-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71db368
commit d4a77bc
Showing
5 changed files
with
197 additions
and
79 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,42 +1,179 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>ch.exense.viz</groupId> | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>ch.exense.viz</groupId> | ||
<artifactId>viz-parent</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<jackson.version>2.10.0</jackson.version> | ||
<jersey.version>2.29.1</jersey.version> | ||
<hk2.version>2.6.1</hk2.version> | ||
</properties> | ||
|
||
<modules> | ||
<module>viz-persistence</module> | ||
<module>viz-proxy</module> | ||
<module>viz-servlet</module> | ||
<module>viz-server</module> | ||
</modules> | ||
|
||
<repositories> | ||
<!-- nexus Snapshot --> | ||
<repository> | ||
<id>nexus-exense</id> | ||
<url>https://nexus-enterprise.exense.ch/repository/exense/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>nexus-exense</id> | ||
<url>https://nexus-enterprise.exense.ch/repository/exense/</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<build> | ||
</build> | ||
<version>1.0.0</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Viz Persistence</name> | ||
<description> | ||
Sample Jetty server supporting Viz persistence | ||
</description> | ||
<url>http://exense.ch/</url> | ||
<licenses> | ||
<license> | ||
<name>The GNU Affero General Public License 3.0</name> | ||
<url>http://www.gnu.org/licenses/</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<name>Jerome Comte</name> | ||
<email>jerome.comte@exense.ch</email> | ||
<organization>Exense</organization> | ||
<organizationUrl>http://exense.ch</organizationUrl> | ||
<url>http://exense.ch/</url> | ||
</developer> | ||
<developer> | ||
<name>Dorian Cransac</name> | ||
<email>dorian.cransac@exense.ch</email> | ||
<organization>Exense</organization> | ||
<organizationUrl>http://exense.ch</organizationUrl> | ||
<url>http://exense.ch/</url> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:https://github.com/exense/exense-visualization-backend.git</connection> | ||
<developerConnection>scm:git:[push=]https://github.com/exense/exense-visualization-backend.git[fetch=]https://github.com/exense/exense-visualization-backend.git</developerConnection> | ||
<url>https://github.com/exense/exense-visualization-backend.git</url> | ||
</scm> | ||
|
||
<properties> | ||
<jackson.version>2.10.0</jackson.version> | ||
<jersey.version>2.29.1</jersey.version> | ||
<hk2.version>2.6.1</hk2.version> | ||
</properties> | ||
|
||
<modules> | ||
<module>viz-persistence</module> | ||
<module>viz-proxy</module> | ||
<module>viz-servlet</module> | ||
<module>viz-server</module> | ||
</modules> | ||
|
||
<repositories> | ||
<!-- nexus Snapshot --> | ||
<repository> | ||
<id>nexus-exense</id> | ||
<url>https://nexus-enterprise.exense.ch/repository/exense/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>nexus-exense</id> | ||
<url>https://nexus-enterprise.exense.ch/repository/exense/</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<plugins> | ||
<!-- Deployment --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<configuration> | ||
<tagNameFormat>@{project.version}</tagNameFormat> | ||
</configuration> | ||
</plugin> | ||
<!-- Release --> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<!-- Switch to true once next release process has been validated --> | ||
<autoReleaseAfterClose>false</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
<!-- Source --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- Javadoc --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<configuration> | ||
<quiet>true</quiet> | ||
<source>8</source> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>Default</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<!-- Local compilation - no signature --> | ||
</profile> | ||
<profile> | ||
<id>Jenkins</id> | ||
<activation> | ||
<activeByDefault>false</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<!-- Signature --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
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