Skip to content

Commit

Permalink
[build] remove artifacts from deploy (#616)
Browse files Browse the repository at this point in the history
This commit removes:

- generation of broker-test artifact
- distribution and embedding_moquette modules from deploy phase
  • Loading branch information
andsel authored Jul 24, 2021
1 parent 25111c6 commit bf3f831
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 49 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.16-SNAPSHOT:
[build] drop generation of broker-test, removed distribution and embedding_moquette modules from deploy phase (#616)

Version 0.12:
Fixed issue #415
Dropped Hazelcast because at the moment Moquette is not designed to be clusterizable
Expand Down
61 changes: 12 additions & 49 deletions broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,35 +130,6 @@
<version>1.10</version>
</dependency>

<!--<dependency>-->
<!--<groupId>org.hdrhistogram</groupId>-->
<!--<artifactId>HdrHistogram</artifactId>-->
<!--<version>2.1.4</version>-->
<!--</dependency>-->

<!-- Test dependencies -->
<!--<dependency>-->
<!--<groupId>junit</groupId>-->
<!--<artifactId>junit</artifactId>-->
<!--<version>4.8.2</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->

<!--<dependency>-->
<!--<groupId>org.slf4j</groupId>-->
<!--<artifactId>slf4j-log4j12</artifactId>-->
<!--<version>1.7.5</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->

<!--&lt;!&ndash; needs extra dependencies: objenesis & hamcrest &ndash;&gt;-->
<!--<dependency>-->
<!--<groupId>org.mockito</groupId>-->
<!--<artifactId>mockito-core</artifactId>-->
<!--<version>1.9.0</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->

<dependency>
<groupId>org.fusesource.mqtt-client</groupId>
<artifactId>mqtt-client</artifactId>
Expand All @@ -180,14 +151,6 @@
<scope>test</scope>
</dependency>

<!--<dependency>-->
<!--<groupId>org.assertj</groupId>-->
<!--<artifactId>assertj-core</artifactId>-->
<!--&lt;!&ndash; use 2.6.0 for Java 7 projects &ndash;&gt;-->
<!--<version>2.6.0</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
Expand Down Expand Up @@ -220,18 +183,18 @@
</plugin>

<!-- Generate the test-jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-jar-plugin</artifactId>-->
<!-- <version>3.0.2</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>test-jar</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
9 changes: 9 additions & 0 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

</plugins>
</build>

Expand Down
13 changes: 13 additions & 0 deletions embedding_moquette/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,17 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit bf3f831

Please sign in to comment.