Skip to content

Commit

Permalink
Ensure to exclude develop dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius van Dis committed Jan 23, 2024
1 parent a6439c4 commit 4fc806d
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@
<artifactId>flock-eco-feature-user</artifactId>
<version>${project.parent.version}</version>
<classifier>develop</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>community.flock.flock-eco</groupId>
Expand All @@ -193,14 +192,12 @@
<artifactId>flock-eco-feature-workspace</artifactId>
<version>${project.parent.version}</version>
<classifier>develop</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>community.flock.flock-eco</groupId>
<artifactId>flock-eco-feature-member</artifactId>
<version>${project.parent.version}</version>
<classifier>develop</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>community.flock.flock-eco</groupId>
Expand Down Expand Up @@ -521,6 +518,18 @@
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<excludes>
<exclude>community/flock/eco/**/develop/**</exclude>
</excludes>
</configuration>
</execution>
<execution>
<phase>package</phase>
<goals>
Expand All @@ -529,7 +538,7 @@
<configuration>
<classifier>develop</classifier>
<includes>
<include>**/develop/data/*</include>
<include>community/flock/eco/**/develop/**</include>
</includes>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
Expand Down

0 comments on commit 4fc806d

Please sign in to comment.