Skip to content

Commit

Permalink
Fixed fileset for cleaning release files [#966]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Oct 4, 2021
1 parent d7956b7 commit eaa19f3
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 19 deletions.
2 changes: 1 addition & 1 deletion comixed-adaptors/pom.xml
Expand Up @@ -13,7 +13,7 @@
<artifactId>comixed-adaptors</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-adaptors</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-auditlog/pom.xml
Expand Up @@ -13,7 +13,7 @@
<artifactId>comixed-auditlog</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-auditlog</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-auth/pom.xml
Expand Up @@ -12,7 +12,7 @@
<artifactId>comixed-auth</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-auth</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-batch/pom.xml
Expand Up @@ -13,7 +13,7 @@
<artifactId>comixed-batch</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-batch</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-http/pom.xml
Expand Up @@ -12,7 +12,7 @@
<artifactId>comixed-http</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-http</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-messaging/pom.xml
Expand Up @@ -13,7 +13,7 @@
<artifactId>comixed-messaging</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-messaging</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-plugins/pom.xml
Expand Up @@ -13,7 +13,7 @@
<artifactId>comixed-plugins</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-plugins</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.python</groupId>
Expand Down
11 changes: 2 additions & 9 deletions comixed-release/pom.xml
Expand Up @@ -13,10 +13,8 @@
<artifactId>comixed-release</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-release</name>
<url>http://maven.apache.org</url>
<properties>
<sonar.skip>true</sonar.skip>
</properties>
<packaging>pom</packaging>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down Expand Up @@ -53,11 +51,6 @@
<artifactId>comixed-rest</artifactId>
<version>0.10.0-1.0</version>
</dependency>
<dependency>
<groupId>org.comixedproject</groupId>
<artifactId>comixed-app</artifactId>
<version>0.10.0-1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion comixed-repositories/pom.xml
Expand Up @@ -12,7 +12,7 @@
<artifactId>comixed-repositories</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-repositories</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down
2 changes: 1 addition & 1 deletion comixed-state/pom.xml
Expand Up @@ -12,7 +12,7 @@
<artifactId>comixed-state</artifactId>
<version>0.10.0-1.0</version>
<name>comixed-state</name>
<url>http://maven.apache.org</url>
<url>http://www.comixedproject.org</url>
<dependencies>
<dependency>
<groupId>org.comixedproject</groupId>
Expand Down
1 change: 1 addition & 0 deletions comixed-webui/pom.xml
Expand Up @@ -7,6 +7,7 @@
<groupId>org.comixedproject</groupId>
<artifactId>comixed</artifactId>
<version>0.10.0-1.0</version>
<relativePath>..</relativePath>
</parent>
<groupId>org.comixedproject</groupId>
<artifactId>comixed-webui</artifactId>
Expand Down
14 changes: 13 additions & 1 deletion pom.xml
Expand Up @@ -313,10 +313,22 @@
<configuration>
<filesets>
<fileset>
<include>comixed-release-*.zip</include>
<directory>${project.basedir}</directory>
<includes>
<include>**/comixed-release-*.zip</include>
</includes>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
Expand Down

0 comments on commit eaa19f3

Please sign in to comment.