Skip to content

Commit

Permalink
Merge branch 'release/1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwestphal committed Sep 11, 2019
2 parents b3e5809 + 37340c0 commit 982c375
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 7 deletions.
6 changes: 3 additions & 3 deletions nifi-sparql-integrate-nar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<parent>
<groupId>org.aksw.sparql-integrate</groupId>
<artifactId>nifi-sparql-integrate-bundle</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>

<artifactId>nifi-sparql-integrate-nar</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>nar</packaging>
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>org.aksw.sparql-integrate</groupId>
<artifactId>nifi-sparql-integrate-processors</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions nifi-sparql-integrate-processors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
<parent>
<groupId>org.aksw.sparql-integrate</groupId>
<artifactId>nifi-sparql-integrate-bundle</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>

<artifactId>nifi-sparql-integrate-processors</artifactId>
<packaging>jar</packaging>

<properties>
<jena.version>3.10.0</jena.version>
<jena-sparql-api.subversion>1-SNAPSHOT</jena-sparql-api.subversion>
<jena.version>3.11.0</jena.version>
<jena-sparql-api.subversion>1</jena-sparql-api.subversion>
<jena-sparql-api.version>${jena.version}-${jena-sparql-api.subversion}</jena-sparql-api.version>
<spring-boot.version>1.5.8.RELEASE</spring-boot.version>
<!-- Project Settings -->
Expand Down
29 changes: 28 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,16 @@

<groupId>org.aksw.sparql-integrate</groupId>
<artifactId>nifi-sparql-integrate-bundle</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>pom</packaging>

<modules>
<module>nifi-sparql-integrate-processors</module>
<module>nifi-sparql-integrate-nar</module>
</modules>
<properties>
<allowSnapshots>true</allowSnapshots>
</properties>

<dependencyManagement>
<dependencies>
Expand All @@ -42,4 +45,28 @@
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.13.0</version>
<configuration>
<installProject>false</installProject>
<pushRemote>false</pushRemote>
<gitFlowConfig>
<versionTagPrefix>v</versionTagPrefix>
<!-- These values should be defaults -->
<!-- <productionBranch>master</productionBranch> -->
<!-- <developmentBranch>develop</developmentBranch> -->
<!-- <featureBranchPrefix>feature/</featureBranchPrefix> -->
<!-- <releaseBranchPrefix>release/</releaseBranchPrefix> -->
<!-- <hotfixBranchPrefix>hotfix/</hotfixBranchPrefix> -->
<!-- <supportBranchPrefix>support/</supportBranchPrefix> -->
<!-- <origin>origin</origin> -->
</gitFlowConfig>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 982c375

Please sign in to comment.