Skip to content

Commit

Permalink
Bumping 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromebrongniart committed Dec 4, 2019
1 parent 71db368 commit d4a77bc
Show file tree
Hide file tree
Showing 5 changed files with 197 additions and 79 deletions.
217 changes: 177 additions & 40 deletions java/pom.xml
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>
5 changes: 5 additions & 0 deletions java/viz-persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<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>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
44 changes: 5 additions & 39 deletions java/viz-proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<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>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -59,45 +64,6 @@
</dependencies>

<build>
<plugins>
<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>

<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

</plugins>
</build>

</project>
5 changes: 5 additions & 0 deletions java/viz-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<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>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
5 changes: 5 additions & 0 deletions java/viz-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<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>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit d4a77bc

Please sign in to comment.