Merge branch 'develop-aps-v1.11.4' into develop-aps20
This commit is contained in:
commit
3710aca827
54
pom.xml
54
pom.xml
@ -8,7 +8,34 @@
|
||||
<version>1.1-SNAPSHOT-aps20</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>CXF-based JAX-RS & JAX-WS enablement for APS v2.0.x</name>
|
||||
<name>CXF-based JAX-RS & JAX-WS enablement for APS App</name>
|
||||
<description>An Alfresco Process Service App v2.0.x extension providing the missing components for JAX-RS-based client libraries.</description>
|
||||
<url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name>
|
||||
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://bitbucket.org/inteligr8/cxf-activiti-ext.git</connection>
|
||||
<developerConnection>scm:git:git@bitbucket.org:inteligr8/cxf-activiti-ext.git</developerConnection>
|
||||
<url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url>
|
||||
</scm>
|
||||
<organization>
|
||||
<name>Inteligr8</name>
|
||||
<url>https://www.inteligr8.com</url>
|
||||
</organization>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>brian.long</id>
|
||||
<name>Brian Long</name>
|
||||
<email>brian@inteligr8.com</email>
|
||||
<url>https://twitter.com/brianmlong</url>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
@ -129,7 +156,7 @@
|
||||
</dependency>
|
||||
|
||||
<!-- ******************** -->
|
||||
<!-- APS v2.0.x specific -->
|
||||
<!-- APS v2.x specific -->
|
||||
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
@ -331,6 +358,29 @@
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>source</id>
|
||||
<phase>package</phase>
|
||||
<goals><goal>jar-no-fork</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>javadoc</id>
|
||||
<phase>package</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
<configuration>
|
||||
<show>public</show>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
|
@ -17,6 +17,11 @@ package com.activiti.extension.conf;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
/**
|
||||
* A means for injecting packages to scan for the Spring context.
|
||||
*
|
||||
* @author brian@inteligr8.com
|
||||
*/
|
||||
@Configuration
|
||||
@ComponentScan(basePackages = "${activiti-ext.scan.packages}")
|
||||
public class CxfActivitiExtSpringComponentScanner {
|
||||
|
Loading…
x
Reference in New Issue
Block a user