Skip to content

Commit

Permalink
change groupId to org.janelia.render for all maven pom files and set …
Browse files Browse the repository at this point in the history
…version to 2.0.0-SNAPSHOT
  • Loading branch information
trautmane committed Jun 13, 2017
1 parent ce40772 commit 7317b3b
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 41 deletions.
29 changes: 25 additions & 4 deletions docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,37 @@
<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>

<parent>
<artifactId>render</artifactId>
<groupId>org.janelia</groupId>
<version>0.4.0-SNAPSHOT</version>
<artifactId>modules-root</artifactId>
<groupId>org.janelia.render</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>Render Documents</name>
<artifactId>docs</artifactId>

<build>
<plugins>
<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</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

<dependencies>

<dependency>
Expand Down
28 changes: 15 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<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">
<modelVersion>4.0.0</modelVersion>

<name>Janelia Rendering Utilities</name>
<groupId>org.janelia</groupId>
<artifactId>render</artifactId>
<version>0.4.0-SNAPSHOT</version>
<modelVersion>4.0.0</modelVersion>

<name>Janelia Rendering Utilities</name>
<groupId>org.janelia.render</groupId>
<artifactId>modules-root</artifactId>
<version>2.0.0-SNAPSHOT</version>

<packaging>pom</packaging>

Expand All @@ -29,11 +30,11 @@
<dependencyManagement>
<dependencies>

<dependency>
<groupId>org.janelia</groupId>
<artifactId>render-app</artifactId>
<version>0.4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.janelia</groupId>
<artifactId>render-app</artifactId>
<version>0.4.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>net.imagej</groupId>
Expand Down Expand Up @@ -66,9 +67,9 @@
</dependency>

<dependency>
<groupId>sc.fiji</groupId>
<artifactId>mpicbg-trakem2</artifactId>
<version>1.2.2</version>
<groupId>sc.fiji</groupId>
<artifactId>mpicbg-trakem2</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>

Expand All @@ -94,6 +95,7 @@
<properties>
<jackson-version>2.4.4</jackson-version>
<logback-version>1.1.2</logback-version>
<render-version>2.0.0-SNAPSHOT</render-version>
<swagger-version>1.5.12</swagger-version>
</properties>

Expand Down
8 changes: 5 additions & 3 deletions render-app/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<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>

<parent>
<groupId>org.janelia</groupId>
<artifactId>render</artifactId>
<version>0.4.0-SNAPSHOT</version>
<groupId>org.janelia.render</groupId>
<artifactId>modules-root</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>

<name>Render Application</name>
Expand Down Expand Up @@ -39,6 +40,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down
25 changes: 19 additions & 6 deletions render-ws-java-client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<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>

<parent>
<groupId>org.janelia</groupId>
<artifactId>render</artifactId>
<version>0.4.0-SNAPSHOT</version>
<artifactId>modules-root</artifactId>
<groupId>org.janelia.render</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>

<name>Render Web Service Java Client</name>
Expand Down Expand Up @@ -86,16 +87,28 @@
</executions>

</plugin>

<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</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>org.janelia</groupId>
<groupId>org.janelia.render</groupId>
<artifactId>render-app</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>${render-version}</version>
</dependency>

<dependency>
Expand Down
28 changes: 21 additions & 7 deletions render-ws-spark-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
<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>

<parent>
<artifactId>render</artifactId>
<groupId>org.janelia</groupId>
<version>0.4.0-SNAPSHOT</version>
<artifactId>modules-root</artifactId>
<groupId>org.janelia.render</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>Render Web Service Spark Client</name>
<artifactId>render-ws-spark-client</artifactId>
Expand Down Expand Up @@ -66,16 +68,28 @@
</executions>

</plugin>

<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</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>org.janelia</groupId>
<groupId>org.janelia.render</groupId>
<artifactId>render-ws-java-client</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>${render-version}</version>
</dependency>

<dependency>
Expand Down
26 changes: 21 additions & 5 deletions render-ws/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<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>

<parent>
<groupId>org.janelia</groupId>
<artifactId>render</artifactId>
<version>0.4.0-SNAPSHOT</version>
<artifactId>modules-root</artifactId>
<groupId>org.janelia.render</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>

<name>Render Web Service</name>
Expand All @@ -19,17 +20,32 @@
<version>2.6</version>
<configuration>
<packagingExcludes>WEB-INF/lib/log4j*.jar</packagingExcludes>
<attachClasses>true</attachClasses>
<classesClassifier>classes</classesClassifier>
</configuration>
</plugin>
<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</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>org.janelia</groupId>
<groupId>org.janelia.render</groupId>
<artifactId>render-app</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>${render-version}</version>
</dependency>

<dependency>
Expand Down
25 changes: 22 additions & 3 deletions trakem2-scripts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,33 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>render</artifactId>
<groupId>org.janelia</groupId>
<version>0.4.0-SNAPSHOT</version>
<artifactId>modules-root</artifactId>
<groupId>org.janelia.render</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>

<name>TrakEM2 Scripts</name>
<artifactId>trakem2-scripts</artifactId>

<build>
<plugins>
<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</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

<dependencies>

<dependency>
Expand Down

0 comments on commit 7317b3b

Please sign in to comment.