Skip to content

Commit

Permalink
Fixed/updated maven config.
Browse files Browse the repository at this point in the history
  • Loading branch information
miahi committed Nov 2, 2022
1 parent 2e6efc7 commit 7deb472
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<version>1.0-SNAPSHOT</version>
<name>EUNIS Main POM</name>
<url>http://eunis.eea.europa.eu/</url>
<url>https://eunis.eea.europa.eu/</url>

<modules>
<module>web</module>
Expand All @@ -29,7 +29,7 @@
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<url>https://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
Expand All @@ -44,15 +44,15 @@
<repository>
<id>archiva.internal</id>
<name>Internal Release Repository</name>
<url>http://archiva.eionet.europa.eu/repository/internal/</url>
<url>https://archiva.eionet.europa.eu/repository/internal/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>archiva.snapshots</id>
<name>Internal Snapshot Repository</name>
<url>http://archiva.eionet.europa.eu/repository/snapshots/</url>
<url>https://archiva.eionet.europa.eu/repository/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
Expand Down
32 changes: 21 additions & 11 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Eunis Web Module</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -216,6 +215,12 @@
</testResources>
<finalName>eunis</finalName>
</build>
<repositories>
<repository>
<id>jaspersoft-repo</id>
<url>https://jaspersoft.jfrog.io/jaspersoft/jaspersoft-repo</url>
</repository>
</repositories>

<dependencies>
<dependency>
Expand All @@ -231,7 +236,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.4</version>
<version>2.4.21</version>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
Expand Down Expand Up @@ -281,7 +286,7 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.7.0</version>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
Expand All @@ -291,7 +296,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Expand All @@ -301,7 +306,7 @@
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
<version>1.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
Expand Down Expand Up @@ -402,9 +407,14 @@
<version>2.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.16.0</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
Expand Down Expand Up @@ -481,7 +491,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
<version>1.13</version>
</dependency>
<dependency>
<groupId>org.openrdf</groupId>
Expand Down Expand Up @@ -509,12 +519,12 @@
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8</version>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.8</version>
<version>3.17</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
Expand Down

0 comments on commit 7deb472

Please sign in to comment.