jbpm-workitems-webservice
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems-webservice</artifactId> <version>7.74.1.Final</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems</artifactId> <version>7.74.1.Final</version> </parent> <artifactId>jbpm-workitems-webservice</artifactId> <name>WebService</name> <description>Perform WebService operations</description> <organization> <name>jBPM dev team</name> </organization> <properties> <java.module.name>org.jbpm.workitem.webservice</java.module.name> </properties> <dependencies> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-core</artifactId> <exclusions> <exclusion> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-javamail_1.4_spec</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <exclusions> <exclusion> <groupId>org.apache.ws.xmlschema</groupId> <artifactId>xmlschema-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-databinding-jaxb</artifactId> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-simple</artifactId> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.neethi</groupId> <artifactId>neethi</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.ws.xmlschema</groupId> <artifactId>xmlschema-core</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http-jetty</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems-core</artifactId> <type>test-jar</type> <scope>test</scope> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <sourceDirectory>${project.build.directory}/generated-sources/java</sourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>*.png</include> </includes> </resource> <resource> <directory>${project.build.directory}/maven-shared-archive-resources</directory> <filtering>true</filtering> <includes> <include>*.part</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessors> <annotationProcessor>org.jbpm.process.workitem.core.util.WidProcessor</annotationProcessor> </annotationProcessors> <compilerArgs> <arg>-AwidName=${project.artifactId}</arg> <arg>-AgenerateTemplates=true</arg> <arg>-AgenerateWids=true</arg> <arg>-AwidsResources=${project.artifactId}.wid:widtemplate.st</arg> <arg>-AtemplateResources=kie-deployment-descriptor.xml:kie-ddtemplate.st,serviceinfo.json:serviceinfo.st,repoindex.html:repoindex.part,index.html:indextemplate.st,${project.artifactId}.bpmn2:defaultprocess.st</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <!-- root module has no assembly so ignore it --> <ignoreMissingDescriptor>true</ignoreMissingDescriptor> <descriptors> <descriptor>${project.basedir}/assembly/assembly.xml</descriptor> </descriptors> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <appendAssemblyId>false</appendAssemblyId> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>filter-src</id> <goals> <goal>filter-sources</goal> </goals> <configuration> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> <version>1.5</version> <configuration> <resourceBundles> <resourceBundle>${project.groupId}:jbpm-workitems-template-resources:${project.version}</resourceBundle> </resourceBundles> </configuration> <executions> <execution> <goals> <goal>process</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-repository-resources</id> <phase>compile</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <encoding>UTF-8</encoding> <resources> <resource> <directory>target/generated-sources/annotations</directory> <includes> <include>repoindex.html</include> </includes> <filtering>true</filtering> </resource> </resources> <outputDirectory>target/classes</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>