Skip to content

Commit

Permalink
updated dependencies and added Automatic-Module-Name to JAR Manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Oct 17, 2021
1 parent eb89b6f commit 08e93ba
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 7 deletions.
13 changes: 13 additions & 0 deletions para-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,19 @@
<docfilessubdirs>true</docfilessubdirs>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.erudika.para.client</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
18 changes: 16 additions & 2 deletions para-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,13 @@
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.1.6.Final</version>
<!-- WARN: Breaking changes in 7.x! -->
<version>6.2.0.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -357,6 +358,19 @@
<docfilessubdirs>true</docfilessubdirs>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.erudika.para.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 2 additions & 2 deletions para-jar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-dao-sql</artifactId>
<version>1.40.1</version>
<version>1.40.2</version>
</dependency>
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-search-lucene</artifactId>
<version>1.39.1</version>
<version>1.40.0</version>
</dependency>
</dependencies>
</profile>
Expand Down
19 changes: 19 additions & 0 deletions para-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,12 @@
<artifactId>concurrent-junit</artifactId>
<version>1.0.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -429,6 +435,19 @@
<docfilessubdirs>true</docfilessubdirs>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.erudika.para.server</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions para-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-dao-sql</artifactId>
<version>1.40.1</version>
<version>1.40.2</version>
</dependency>
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-search-lucene</artifactId>
<version>1.39.1</version>
<version>1.40.0</version>
</dependency>
<!-- PARA PLUGINS : END -->
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<springBootVer>2.5.4</springBootVer>
<metricsVer>4.1.16</metricsVer>
<httpClientVer>5.1</httpClientVer>
<httpCoreVer>5.1.1</httpCoreVer>
<httpCoreVer>5.1.2</httpCoreVer>
<commonsCodecVer>1.15</commonsCodecVer>
</properties>

Expand Down

0 comments on commit 08e93ba

Please sign in to comment.