Repository: jena Updated Branches: refs/heads/master de37d8dd5 -> bead39ed9
Module naming consistency Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/bead39ed Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/bead39ed Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/bead39ed Branch: refs/heads/master Commit: bead39ed9cdc63f0f40528eea3a8a0e6e0779852 Parents: de37d8d Author: Rob Vesse <[email protected]> Authored: Thu Oct 23 14:19:20 2014 +0100 Committer: Rob Vesse <[email protected]> Committed: Thu Oct 23 14:19:20 2014 +0100 ---------------------------------------------------------------------- jena-extras/jena-querybuilder/pom.xml | 59 +++++++++++++----------------- jena-extras/pom.xml | 2 +- 2 files changed, 26 insertions(+), 35 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/bead39ed/jena-extras/jena-querybuilder/pom.xml ---------------------------------------------------------------------- diff --git a/jena-extras/jena-querybuilder/pom.xml b/jena-extras/jena-querybuilder/pom.xml index 09fd5ea..5641ad3 100644 --- a/jena-extras/jena-querybuilder/pom.xml +++ b/jena-extras/jena-querybuilder/pom.xml @@ -15,9 +15,33 @@ See the License for the specific language governing permissions and limitations under the License. --> -<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"> +<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> + <artifactId>jena-querybuilder</artifactId> + <name>Apache Jena - Extras - Query Builder</name> + <description>A utility package to simplify the building of ARQ queries in code. Provides both a simple builder interface for queries as well as simple prepared statement processing.</description> + + <parent> + <groupId>org.apache.jena</groupId> + <artifactId>jena-extras</artifactId> + <relativePath>..</relativePath> + <version>2.12.2-SNAPSHOT</version> + </parent> + + <dependencies> + <dependency> + <groupId>org.apache.jena</groupId> + <artifactId>apache-jena-libs</artifactId> + <type>pom</type> + </dependency> + <dependency> + <groupId>org.xenei</groupId> + <artifactId>junit-contracts</artifactId> + </dependency> + </dependencies> + <build> <plugins> <plugin> @@ -29,37 +53,4 @@ </plugin> </plugins> </build> - <dependencies> - <dependency> - <groupId>org.apache.jena</groupId> - <artifactId>apache-jena-libs</artifactId> - <type>pom</type> - </dependency> - <dependency> - <groupId>org.xenei</groupId> - <artifactId>junit-contracts</artifactId> - </dependency> - </dependencies> - <name>Apache Jena Query Builder- jena-querybulder</name> - <inceptionYear>2014</inceptionYear> - <organization> - <name>The Apache Software Foundation</name> - <url>http://www.apache.org/</url> - </organization> - <properties> - - </properties> - <scm> - <!-- <url>https://svn.apache.org/repos/asf/jena/Experimental/jena-common/</url> - <connection>scm:svn:https://svn.apache.org/repos/asf/jena/Experimental/jena-common/</connection> - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jena/Experimental/jena-common/</developerConnection> - --> - </scm> - <parent> - <groupId>org.apache.jena</groupId> - <artifactId>jena-extras</artifactId> - <relativePath>..</relativePath> - <version>2.12.2-SNAPSHOT</version> - </parent> - <description>A utility package to simplify the building of ARQ queries in code. Provides both a simple builder interface for queries as well as simple prepared statement processing.</description> </project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/jena/blob/bead39ed/jena-extras/pom.xml ---------------------------------------------------------------------- diff --git a/jena-extras/pom.xml b/jena-extras/pom.xml index e953d99..0327035 100644 --- a/jena-extras/pom.xml +++ b/jena-extras/pom.xml @@ -20,7 +20,7 @@ <artifactId>jena-extras</artifactId> <version>2.12.2-SNAPSHOT</version> <packaging>pom</packaging> - <name>Apache Jena Extras - jena-extras</name> + <name>Apache Jena - Extras</name> <description>Extra packages for Jena development. This is the parent module for the Jena Extra modules. These modules provide utiliities and larger packages that make Apache Jena development or usage
