-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
e96492f
commit 7d95ab6
Showing
20 changed files
with
525 additions
and
571 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>it.geosolutions</groupId> | ||
|
@@ -63,8 +64,8 @@ | |
<scm> | ||
<url>https://github.com/geosolutions-it/geostore</url> | ||
<connection>scm:git:[email protected]:geosolutions-it/geostore.git</connection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<ciManagement> | ||
<system>jenkins</system> | ||
|
@@ -95,10 +96,20 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.0.2</version> | ||
<version>3.10.1</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
<encoding>utf8</encoding> | ||
<source>8</source> | ||
<target>8</target> | ||
<debug>true</debug> | ||
<encoding>UTF-8</encoding> | ||
<!-- | ||
On the win32 build box the compiler oom's due to the compiler accumulating | ||
too many classes in the permanent generation, similar to GEOT-2462 | ||
--> | ||
<fork>true</fork> | ||
<meminitial>128M</meminitial> | ||
<maxmem>1512M</maxmem> | ||
</configuration> | ||
</plugin> | ||
|
||
|
@@ -166,6 +177,23 @@ | |
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.owasp</groupId> | ||
<artifactId>dependency-check-maven</artifactId> | ||
<version>9.0.9</version> | ||
<configuration> | ||
<skip>true</skip> | ||
<!-- <nvdApiKey>******-****-****-****-*********</nvdApiKey> --> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
</plugins> | ||
|
||
<extensions> | ||
|
@@ -192,16 +220,9 @@ | |
</links> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
<version>2.7</version> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
|
||
|
||
<modules> | ||
<module>src</module> | ||
</modules> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.