Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 5415769

Browse files
committed
Update poms for relase 3.3.0.0
1 parent 203890f commit 5415769

File tree

7 files changed

+38
-23
lines changed

7 files changed

+38
-23
lines changed

algo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j</groupId>
88
<artifactId>graph-algorithms-parent</artifactId>
9-
<version>3.3.0.0-SNAPSHOT</version>
9+
<version>3.3.0.0</version>
1010
</parent>
1111

1212
<artifactId>graph-algorithms-algo</artifactId>

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.neo4j</groupId>
88
<artifactId>graph-algorithms-parent</artifactId>
9-
<version>3.3.0.0-SNAPSHOT</version>
9+
<version>3.3.0.0</version>
1010
</parent>
1111

1212
<artifactId>graph-algorithms-benchmark</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>graph-algorithms-parent</artifactId>
77
<groupId>org.neo4j</groupId>
8-
<version>3.3.0.0-SNAPSHOT</version>
8+
<version>3.3.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

core/src/main/java/org/neo4j/graphalgo/helper/graphbuilder/LineBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public LineBuilder withTail(Node tail) {
3333
/**
3434
* create a ring
3535
*
36-
* @param size number of elements (>= 2)
36+
* @param size number of elements (&gt;= 2)
3737
* @return itself for method chaining
3838
*/
3939
public LineBuilder createLine(int size) {

core/src/main/java/org/neo4j/graphalgo/helper/graphbuilder/RingBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected RingBuilder(GraphDatabaseAPI api, Label label, RelationshipType relati
2121
/**
2222
* create a ring
2323
*
24-
* @param size number of elements (>= 2)
24+
* @param size number of elements (&gt;= 2)
2525
* @return itself for method chaining
2626
*/
2727
public RingBuilder createRing(int size) {

pom.xml

Lines changed: 32 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.neo4j</groupId>
77
<artifactId>graph-algorithms-parent</artifactId>
8-
<version>3.3.0.0-SNAPSHOT</version>
8+
<version>3.3.0.0</version>
99
<packaging>pom</packaging>
1010
<name>Neo4j Graph Algorithms</name>
1111

@@ -32,14 +32,14 @@
3232
</properties>
3333

3434
<organization>
35-
<name>Neo Technology, Inc.</name>
35+
<name>Neo4j, Inc.</name>
3636
<url>https://neo4j.com</url>
3737
</organization>
3838

3939
<developers>
4040
<developer>
4141
<id>neo-technology</id>
42-
<organization>Neo Technology, Incl.</organization>
42+
<organization>Neo4j, Inc.</organization>
4343
<url>https://neo4j.com</url>
4444
</developer>
4545
<developer>
@@ -142,6 +142,35 @@
142142
<target>${javac.target}</target>
143143
</configuration>
144144
</plugin>
145+
<plugin>
146+
<groupId>org.apache.maven.plugins</groupId>
147+
<artifactId>maven-source-plugin</artifactId>
148+
<version>2.2.1</version>
149+
<executions>
150+
<execution>
151+
<id>attach-sources</id>
152+
<goals>
153+
<goal>jar</goal>
154+
</goals>
155+
</execution>
156+
</executions>
157+
</plugin>
158+
<plugin>
159+
<groupId>org.apache.maven.plugins</groupId>
160+
<artifactId>maven-javadoc-plugin</artifactId>
161+
<version>2.9.1</version>
162+
<executions>
163+
<execution>
164+
<id>attach-javadocs</id>
165+
<goals>
166+
<goal>jar</goal>
167+
</goals>
168+
</execution>
169+
</executions>
170+
<configuration>
171+
<additionalparam>-Xdoclint:none</additionalparam>
172+
</configuration>
173+
</plugin>
145174
<plugin>
146175
<groupId>org.asciidoctor</groupId>
147176
<artifactId>asciidoctor-maven-plugin</artifactId>
@@ -182,18 +211,4 @@
182211
</plugin>
183212
</plugins>
184213
</build>
185-
<repositories>
186-
<repository>
187-
<id>sonatype-snapshot-repo</id>
188-
<name>Sonatype SNAPSHOT repository</name>
189-
<layout>default</layout>
190-
<releases>
191-
<enabled>false</enabled>
192-
</releases>
193-
<snapshots>
194-
<enabled>true</enabled>
195-
</snapshots>
196-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
197-
</repository>
198-
</repositories>
199214
</project>

tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>graph-algorithms-parent</artifactId>
77
<groupId>org.neo4j</groupId>
8-
<version>3.3.0.0-SNAPSHOT</version>
8+
<version>3.3.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)