Repository: jena Updated Branches: refs/heads/master 8f43ccc94 -> b6699706e
JENA-849 Updated outdated jena-maven-tools/demo versions .. specially the new groupId/artifactId (why isn't it jena-maven-plugin ?) .. leaving <plugin><version> blank and RELEASE for jena-core. Ideally this should be proper versions updated by the release-plugin, but then we would need to change to multiple modules. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/99ca3fcd Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/99ca3fcd Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/99ca3fcd Branch: refs/heads/master Commit: 99ca3fcd03806bff22c449689dde3ecb4e09ebbc Parents: b4e303a Author: Stian Soiland-Reyes <[email protected]> Authored: Thu Feb 26 01:28:19 2015 +0000 Committer: Stian Soiland-Reyes <[email protected]> Committed: Thu Feb 26 13:39:03 2015 +0000 ---------------------------------------------------------------------- jena-maven-tools/demo/pom.xml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/99ca3fcd/jena-maven-tools/demo/pom.xml ---------------------------------------------------------------------- diff --git a/jena-maven-tools/demo/pom.xml b/jena-maven-tools/demo/pom.xml index 3ba1697..88b2c7b 100644 --- a/jena-maven-tools/demo/pom.xml +++ b/jena-maven-tools/demo/pom.xml @@ -19,7 +19,7 @@ <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> - <groupId>org.openjena.tools</groupId> + <groupId>com.example.jena</groupId> <artifactId>schemagen-demo</artifactId> <version>0.0.1</version> <packaging>jar</packaging> @@ -27,9 +27,11 @@ <build> <plugins> <plugin> - <groupId>org.openjena.tools</groupId> - <artifactId>schemagen</artifactId> - <version>0.2-SNAPSHOT</version> + <groupId>org.apache.jena</groupId> + <artifactId>jena-maven-tools</artifactId> + <!-- add something like: + <version>0.8</version> + --> <configuration> <includes> <include>src/main/vocabs/*.ttl</include> @@ -62,7 +64,11 @@ <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-core</artifactId> - <version>2.7.3</version> + <!-- replace with something like + <version>2.13.0</version> + --> + <version>RELEASE</version> </dependency> </dependencies> -</project> \ No newline at end of file + +</project>
