lgcareer
5 years ago
committed by
qiaozhanwei
8 changed files with 99 additions and 333 deletions
@ -1,74 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!-- |
|
||||||
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
~ contributor license agreements. See the NOTICE file distributed with |
|
||||||
~ this work for additional information regarding copyright ownership. |
|
||||||
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
~ (the "License"); you may not use this file except in compliance with |
|
||||||
~ the License. You may obtain a copy of the License at |
|
||||||
~ |
|
||||||
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
~ |
|
||||||
~ Unless required by applicable law or agreed to in writing, software |
|
||||||
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
~ See the License for the specific language governing permissions and |
|
||||||
~ limitations under the License. |
|
||||||
--> |
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||||
<parent> |
|
||||||
<artifactId>dolphinscheduler-dist</artifactId> |
|
||||||
<groupId>org.apache.dolphinscheduler</groupId> |
|
||||||
<version>1.2.1-SNAPSHOT</version> |
|
||||||
</parent> |
|
||||||
<modelVersion>4.0.0</modelVersion> |
|
||||||
<artifactId>dolphinscheduler-backend</artifactId> |
|
||||||
<name>${project.artifactId}</name> |
|
||||||
|
|
||||||
<dependencies> |
|
||||||
<dependency> |
|
||||||
<groupId>org.apache.dolphinscheduler</groupId> |
|
||||||
<artifactId>dolphinscheduler-server</artifactId> |
|
||||||
</dependency> |
|
||||||
|
|
||||||
<dependency> |
|
||||||
<groupId>org.apache.dolphinscheduler</groupId> |
|
||||||
<artifactId>dolphinscheduler-api</artifactId> |
|
||||||
</dependency> |
|
||||||
|
|
||||||
</dependencies> |
|
||||||
|
|
||||||
<profiles> |
|
||||||
<profile> |
|
||||||
<id>release</id> |
|
||||||
<build> |
|
||||||
<plugins> |
|
||||||
<plugin> |
|
||||||
<artifactId>maven-assembly-plugin</artifactId> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>dolphinscheduler-backend-bin</id> |
|
||||||
<phase>package</phase> |
|
||||||
<goals> |
|
||||||
<goal>single</goal> |
|
||||||
</goals> |
|
||||||
|
|
||||||
<configuration> |
|
||||||
<descriptors> |
|
||||||
<descriptor>src/main/assembly/dolphinscheduler-binary-backend.xml</descriptor> |
|
||||||
</descriptors> |
|
||||||
<appendAssemblyId>true</appendAssemblyId> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
|
|
||||||
|
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
|
|
||||||
</plugins> |
|
||||||
</build> |
|
||||||
</profile> |
|
||||||
</profiles> |
|
||||||
|
|
||||||
</project> |
|
@ -1,59 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!-- |
|
||||||
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
~ contributor license agreements. See the NOTICE file distributed with |
|
||||||
~ this work for additional information regarding copyright ownership. |
|
||||||
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
~ (the "License"); you may not use this file except in compliance with |
|
||||||
~ the License. You may obtain a copy of the License at |
|
||||||
~ |
|
||||||
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
~ |
|
||||||
~ Unless required by applicable law or agreed to in writing, software |
|
||||||
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
~ See the License for the specific language governing permissions and |
|
||||||
~ limitations under the License. |
|
||||||
--> |
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||||
<parent> |
|
||||||
<artifactId>dolphinscheduler-dist</artifactId> |
|
||||||
<groupId>org.apache.dolphinscheduler</groupId> |
|
||||||
<version>1.2.1-SNAPSHOT</version> |
|
||||||
</parent> |
|
||||||
<modelVersion>4.0.0</modelVersion> |
|
||||||
|
|
||||||
<artifactId>dolphinscheduler-front</artifactId> |
|
||||||
<name>${project.artifactId}</name> |
|
||||||
|
|
||||||
<profiles> |
|
||||||
<profile> |
|
||||||
<id>release</id> |
|
||||||
<build> |
|
||||||
<plugins> |
|
||||||
<plugin> |
|
||||||
<artifactId>maven-assembly-plugin</artifactId> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>dolphinscheduler-front-bin</id> |
|
||||||
<phase>package</phase> |
|
||||||
<goals> |
|
||||||
<goal>single</goal> |
|
||||||
</goals> |
|
||||||
|
|
||||||
<configuration> |
|
||||||
<descriptors> |
|
||||||
<descriptor>src/main/assembly/dolphinscheduler-binary-front.xml</descriptor> |
|
||||||
</descriptors> |
|
||||||
<appendAssemblyId>true</appendAssemblyId> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
</plugins> |
|
||||||
</build> |
|
||||||
</profile> |
|
||||||
</profiles> |
|
||||||
|
|
||||||
</project> |
|
@ -1,71 +0,0 @@ |
|||||||
<!-- |
|
||||||
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
~ contributor license agreements. See the NOTICE file distributed with |
|
||||||
~ this work for additional information regarding copyright ownership. |
|
||||||
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
~ (the "License"); you may not use this file except in compliance with |
|
||||||
~ the License. You may obtain a copy of the License at |
|
||||||
~ |
|
||||||
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
~ |
|
||||||
~ Unless required by applicable law or agreed to in writing, software |
|
||||||
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
~ See the License for the specific language governing permissions and |
|
||||||
~ limitations under the License. |
|
||||||
--> |
|
||||||
|
|
||||||
<assembly |
|
||||||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
|
||||||
<id>dolphinscheduler-front-bin</id> |
|
||||||
<formats> |
|
||||||
<format>tar.gz</format> |
|
||||||
</formats> |
|
||||||
<includeBaseDirectory>true</includeBaseDirectory> |
|
||||||
<baseDirectory>${project.build.finalName}-dolphinscheduler-front-bin</baseDirectory> |
|
||||||
|
|
||||||
<fileSets> |
|
||||||
<fileSet> |
|
||||||
<directory>${basedir}/../../dolphinscheduler-ui/dist</directory> |
|
||||||
<includes> |
|
||||||
<include>**/*.*</include> |
|
||||||
</includes> |
|
||||||
<outputDirectory>./dist</outputDirectory> |
|
||||||
</fileSet> |
|
||||||
|
|
||||||
<fileSet> |
|
||||||
<directory>${basedir}/../../dolphinscheduler-ui</directory> |
|
||||||
<includes> |
|
||||||
<include>install-dolphinscheduler-ui.sh</include> |
|
||||||
</includes> |
|
||||||
<outputDirectory>.</outputDirectory> |
|
||||||
</fileSet> |
|
||||||
|
|
||||||
<fileSet> |
|
||||||
<directory>${basedir}/../release-docs</directory> |
|
||||||
<includes> |
|
||||||
<include>./*</include> |
|
||||||
</includes> |
|
||||||
<outputDirectory>.</outputDirectory> |
|
||||||
</fileSet> |
|
||||||
|
|
||||||
<fileSet> |
|
||||||
<directory>${basedir}/../release-docs/licenses/ui-licenses</directory> |
|
||||||
<includes> |
|
||||||
<include>**/*</include> |
|
||||||
</includes> |
|
||||||
<outputDirectory>./licenses</outputDirectory> |
|
||||||
</fileSet> |
|
||||||
|
|
||||||
<fileSet> |
|
||||||
<directory>${basedir}/../.././</directory> |
|
||||||
<includes> |
|
||||||
<include>DISCLAIMER</include> |
|
||||||
</includes> |
|
||||||
<outputDirectory>.</outputDirectory> |
|
||||||
</fileSet> |
|
||||||
|
|
||||||
</fileSets> |
|
||||||
</assembly> |
|
@ -1,71 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!-- |
|
||||||
~ Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
~ contributor license agreements. See the NOTICE file distributed with |
|
||||||
~ this work for additional information regarding copyright ownership. |
|
||||||
~ The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
~ (the "License"); you may not use this file except in compliance with |
|
||||||
~ the License. You may obtain a copy of the License at |
|
||||||
~ |
|
||||||
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
~ |
|
||||||
~ Unless required by applicable law or agreed to in writing, software |
|
||||||
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
~ See the License for the specific language governing permissions and |
|
||||||
~ limitations under the License. |
|
||||||
--> |
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
||||||
<parent> |
|
||||||
<artifactId>dolphinscheduler-dist</artifactId> |
|
||||||
<groupId>org.apache.dolphinscheduler</groupId> |
|
||||||
<version>1.2.1-SNAPSHOT</version> |
|
||||||
</parent> |
|
||||||
<modelVersion>4.0.0</modelVersion> |
|
||||||
|
|
||||||
<artifactId>dolphinscheduler-src</artifactId> |
|
||||||
<name>${project.artifactId}</name> |
|
||||||
|
|
||||||
<profiles> |
|
||||||
<profile> |
|
||||||
<id>release</id> |
|
||||||
<build> |
|
||||||
<plugins> |
|
||||||
<plugin> |
|
||||||
<artifactId>maven-assembly-plugin</artifactId> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>src</id> |
|
||||||
<phase>package</phase> |
|
||||||
<goals> |
|
||||||
<goal>single</goal> |
|
||||||
</goals> |
|
||||||
<configuration> |
|
||||||
<descriptors> |
|
||||||
<descriptor>src/main/assembly/dolphinscheduler-src.xml</descriptor> |
|
||||||
</descriptors> |
|
||||||
<appendAssemblyId>true</appendAssemblyId> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
|
|
||||||
<plugin> |
|
||||||
<groupId>org.apache.maven.plugins</groupId> |
|
||||||
<artifactId>maven-source-plugin</artifactId> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>attach-sources</id> |
|
||||||
<phase>verify</phase> |
|
||||||
<goals> |
|
||||||
<goal>jar-no-fork</goal> |
|
||||||
</goals> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
</plugins> |
|
||||||
</build> |
|
||||||
</profile> |
|
||||||
</profiles> |
|
||||||
</project> |
|
Loading…
Reference in new issue