You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by ma...@apache.org on 2014/06/20 14:26:00 UTC

svn commit: r1604160 - in /syncope/trunk: archetype/src/main/resources/archetype-resources/core/pom.xml archetype/src/main/resources/meta-pom.xml core/src/main/resources/restContext.xml pom.xml

Author: massi
Date: Fri Jun 20 12:25:59 2014
New Revision: 1604160

URL: http://svn.apache.org/r1604160
Log:
dependency and property for WADL #SYNCOPE-488

Modified:
    syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml
    syncope/trunk/archetype/src/main/resources/meta-pom.xml
    syncope/trunk/core/src/main/resources/restContext.xml
    syncope/trunk/pom.xml

Modified: syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml?rev=1604160&r1=1604159&r2=1604160&view=diff
==============================================================================
--- syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml (original)
+++ syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml Fri Jun 20 12:25:59 2014
@@ -41,6 +41,11 @@ under the License.
     </dependency>
     <dependency>
       <groupId>org.apache.syncope</groupId>
+      <artifactId>syncope-common</artifactId>
+      <classifier>javadoc</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.syncope</groupId>
       <artifactId>syncope-core</artifactId>
       <type>war</type>
     </dependency>

Modified: syncope/trunk/archetype/src/main/resources/meta-pom.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/archetype/src/main/resources/meta-pom.xml?rev=1604160&r1=1604159&r2=1604160&view=diff
==============================================================================
--- syncope/trunk/archetype/src/main/resources/meta-pom.xml (original)
+++ syncope/trunk/archetype/src/main/resources/meta-pom.xml Fri Jun 20 12:25:59 2014
@@ -50,6 +50,13 @@ under the License.
         <artifactId>syncope-common</artifactId>
         <version>${syncope.version}</version>
       </dependency> 
+ 
+      <dependency>
+        <groupId>org.apache.syncope</groupId>
+        <artifactId>syncope-common</artifactId>
+        <version>${syncope.version}</version>
+        <classifier>javadoc</classifier>
+      </dependency>
 
       <dependency>
         <groupId>org.apache.syncope</groupId>

Modified: syncope/trunk/core/src/main/resources/restContext.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/core/src/main/resources/restContext.xml?rev=1604160&r1=1604159&r2=1604160&view=diff
==============================================================================
--- syncope/trunk/core/src/main/resources/restContext.xml (original)
+++ syncope/trunk/core/src/main/resources/restContext.xml Fri Jun 20 12:25:59 2014
@@ -78,13 +78,13 @@ under the License.
   <bean id="searchContextProvider" class="org.apache.cxf.jaxrs.ext.search.SearchContextProvider"/>
   
   <bean id="wadlGenerator" class="org.apache.cxf.jaxrs.model.wadl.WadlGenerator">
-    <property name="applicationTitle" value="Apache Syncope ${project.version}"/>
+    <property name="applicationTitle" value="Apache Syncope ${syncope.version}"/>
     <property name="namespacePrefix" value="syncope"/>
     <property name="linkJsonToXmlSchema" value="true"/>
     <property name="useJaxbContextForQnames" value="true"/>
     <property name="ignoreMessageWriters" value="true"/>
     <property name="addResourceAndMethodIds" value="true"/>
-    <property name="javaDocPath" value="/WEB-INF/lib/syncope-common-${project.version}-javadoc.jar"/>
+    <property name="javaDocPath" value="/WEB-INF/lib/syncope-common-${syncope.version}-javadoc.jar"/>
   </bean>
   
   <bean id="addETagFilter" class="org.apache.syncope.core.services.AddETagFilter"/>

Modified: syncope/trunk/pom.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/pom.xml?rev=1604160&r1=1604159&r2=1604160&view=diff
==============================================================================
--- syncope/trunk/pom.xml (original)
+++ syncope/trunk/pom.xml Fri Jun 20 12:25:59 2014
@@ -300,6 +300,7 @@ under the License.
   </prerequisites>
     
   <properties>         
+    <syncope.version>${project.version}</syncope.version>
     <targetJdk>1.6</targetJdk>
         
     <servlet-api.version>3.0.1</servlet-api.version>