You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ca...@apache.org on 2011/11/22 12:26:37 UTC

svn commit: r1204926 - in /incubator/jena/Jena2/JenaDist/trunk: assembly-binary.xml assembly-onejar.xml assembly-sources.xml pom.xml

Author: castagna
Date: Tue Nov 22 11:26:36 2011
New Revision: 1204926

URL: http://svn.apache.org/viewvc?rev=1204926&view=rev
Log:
Renamed "bin" --> "distribution" and "src" --> "source-release". 
First attempt to create a single Jena jar (still not working) (useful references added to TODO.txt file).

Added:
    incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml   (with props)
Modified:
    incubator/jena/Jena2/JenaDist/trunk/assembly-binary.xml
    incubator/jena/Jena2/JenaDist/trunk/assembly-sources.xml
    incubator/jena/Jena2/JenaDist/trunk/pom.xml

Modified: incubator/jena/Jena2/JenaDist/trunk/assembly-binary.xml
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaDist/trunk/assembly-binary.xml?rev=1204926&r1=1204925&r2=1204926&view=diff
==============================================================================
--- incubator/jena/Jena2/JenaDist/trunk/assembly-binary.xml (original)
+++ incubator/jena/Jena2/JenaDist/trunk/assembly-binary.xml Tue Nov 22 11:26:36 2011
@@ -19,7 +19,7 @@
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="xmlns=http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
 
-  <id>bin</id>
+  <id>distribution</id>
   <baseDirectory>apache-jena-${project.version}</baseDirectory>
 
   <formats>

Added: incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml?rev=1204926&view=auto
==============================================================================
--- incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml (added)
+++ incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml Tue Nov 22 11:26:36 2011
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="xmlns=http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
+
+  <id>jar</id>
+  <baseDirectory>apache-jena-${project.version}</baseDirectory>
+  <includeBaseDirectory>false</includeBaseDirectory>
+
+  <formats>
+    <format>jar</format>
+  </formats>
+
+  <dependencySets>
+    <dependencySet>
+      <outputDirectory>/</outputDirectory>
+      <useProjectArtifact>true</useProjectArtifact>
+      <unpack>true</unpack>
+      <scope>runtime</scope>
+    </dependencySet>
+  </dependencySets>
+
+</assembly>

Propchange: incubator/jena/Jena2/JenaDist/trunk/assembly-onejar.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: incubator/jena/Jena2/JenaDist/trunk/assembly-sources.xml
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaDist/trunk/assembly-sources.xml?rev=1204926&r1=1204925&r2=1204926&view=diff
==============================================================================
--- incubator/jena/Jena2/JenaDist/trunk/assembly-sources.xml (original)
+++ incubator/jena/Jena2/JenaDist/trunk/assembly-sources.xml Tue Nov 22 11:26:36 2011
@@ -19,7 +19,7 @@
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="xmlns=http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
 
-  <id>src</id>
+  <id>source-release</id>
   <baseDirectory>apache-jena-${project.version}</baseDirectory>
 
   <formats>

Modified: incubator/jena/Jena2/JenaDist/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/JenaDist/trunk/pom.xml?rev=1204926&r1=1204925&r2=1204926&view=diff
==============================================================================
--- incubator/jena/Jena2/JenaDist/trunk/pom.xml (original)
+++ incubator/jena/Jena2/JenaDist/trunk/pom.xml Tue Nov 22 11:26:36 2011
@@ -54,6 +54,7 @@
               <descriptors>
                 <descriptor>assembly-binary.xml</descriptor>
                 <descriptor>assembly-sources.xml</descriptor>
+                <descriptor>assembly-onejar.xml</descriptor>
               </descriptors>
             </configuration>
           </execution>