Skip to content

Commit 7fa6da7

Browse files
author
Darrick Wiebe
committed
more release preparation
1 parent 8de84b2 commit 7fa6da7

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ build_output.txt
1010
.classpath
1111
.project
1212
.settings
13+
settings.xml

blueprints-neo4j2-graph/pom.xml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<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">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>com.xnlogic.blueprints</groupId>
6-
<artifactId>blueprints-neo4j2-graph</artifactId>
7-
<version>2.6.1</version>
8-
<name>Blueprints-Neo4j2Graph (XN Release)</name>
5+
<artifactId>xn-blueprints-neo4j2-graph</artifactId>
6+
<version>2.6.1-SNAPSHOT</version>
7+
<name>XN-Blueprints-Neo4j2-Graph</name>
98
<description>Blueprints property graph implementation for the Neo4j 2 graph database</description>
109
<url>http://xnlogic.com</url>
1110
<properties>
@@ -21,7 +20,8 @@
2120
<connection>scm:git:git@github.com:xnlogic/blueprints.git</connection>
2221
<developerConnection>scm:git:git@github.com:xnlogic/blueprints.git</developerConnection>
2322
<url>git@github.com:xnlogic/blueprints.git</url>
24-
</scm>
23+
<tag>HEAD</tag>
24+
</scm>
2525
<dependencies>
2626
<dependency>
2727
<groupId>com.tinkerpop.blueprints</groupId>
@@ -124,6 +124,26 @@
124124
</execution>
125125
</executions>
126126
</plugin>
127+
<plugin>
128+
<artifactId>maven-release-plugin</artifactId>
129+
<version>2.4.1</version>
130+
<configuration>
131+
<useReleaseProfile>false</useReleaseProfile>
132+
<releaseProfiles>release</releaseProfiles>
133+
<autoVersionSubmodules>true</autoVersionSubmodules>
134+
</configuration>
135+
</plugin>
127136
</plugins>
128137
</build>
138+
<distributionManagement>
139+
<repository>
140+
<id>bintray</id>
141+
<url>https://api.bintray.com/maven/pangloss/maven/xn-blueprints-neo4j2-graph</url>
142+
</repository>
143+
</distributionManagement>
144+
<profiles>
145+
<profile>
146+
<id>release</id>
147+
</profile>
148+
</profiles>
129149
</project>

0 commit comments

Comments
 (0)