Commit eb6e97e4 authored by Brian Long's avatar Brian Long
Browse files

added javadocs

parent e18976fa
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -356,6 +356,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>
+5 −0
Original line number Diff line number Diff line
@@ -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 {