Skip to content

Commit

Permalink
add distribution module
Browse files Browse the repository at this point in the history
  • Loading branch information
nzomkxia committed Jan 31, 2019
1 parent d378932 commit 521ded9
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 0 deletions.
86 changes: 86 additions & 0 deletions dubbo-admin-distribution/pom.xml
@@ -0,0 +1,86 @@
<?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>dubbo-admin</artifactId>
<groupId>org.apache</groupId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dubbo-admin-distribution</artifactId>

<dependencies>
<dependency>
<groupId>org.apache</groupId>
<artifactId>dubbo-admin-frontend</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache</groupId>
<artifactId>dubbo-admin-backend</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<profiles>
<profile>
<id>release</id>
<build>
<finalName>apache-dubbo-ops-incubating-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>source-release</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/source-release.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
65 changes: 65 additions & 0 deletions dubbo-admin-distribution/src/assembly/source-release.xml
@@ -0,0 +1,65 @@
<!--
~ 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/ASSEMBLY/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>source-release</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>${project.build.finalName}-source-release</baseDirectory>

<fileSets>
<fileSet>
<directory>../</directory>
<useDefaultExcludes>true</useDefaultExcludes>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/target/**</exclude>
<exclude>**/eclipse-classes/**</exclude>
<exclude>**/dubbo-governance.log*</exclude>
<exclude>dubbo-admin-backend/src/main/resources/public/**</exclude>
<exclude>**/.gitrepo</exclude>
<exclude>**/.gitkeep</exclude>
<exclude>*.enc</exclude>
<exclude>*.gpg</exclude>
<exclude>**/node_modules/**</exclude>
<exclude>**/node/**</exclude>
<exclude>**/etc/**</exclude>
<exclude>**/package-lock.json</exclude>
<exclude>**/dist/**</exclude>
<exclude>**/surefire*</exclude>
<exclude>**/svn-commit*</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/*.iml</exclude>
<exclude>**/.settings/**</exclude>
<exclude>**/*.ipr</exclude>
<exclude>**/*.iws</exclude>
<exclude>**/cobertura.ser</exclude>
<exclude>**/*.log</exclude>
<exclude>release.properties</exclude>
<exclude>**/*.xml.*</exclude>
<exclude>**/*.patch</exclude>
<exclude>**/.mvn/**</exclude>
<exclude>**/*.jar</exclude>
<exclude>**/mvnw*</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -26,6 +26,7 @@
<modules>
<module>dubbo-admin-frontend</module>
<module>dubbo-admin-backend</module>
<module>dubbo-admin-distribution</module>
</modules>
<packaging>pom</packaging>

Expand Down

0 comments on commit 521ded9

Please sign in to comment.