ats-examples-vm-actions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.axway.ats.framework.examples</groupId> <artifactId>ats-examples-vm-actions</artifactId> <version>4.0.8</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.axway.ats.framework</groupId> <artifactId>ats-examples</artifactId> <version>4.0.8</version> </parent> <groupId>com.axway.ats.framework.examples</groupId> <artifactId>ats-examples-vm-actions</artifactId> <packaging>jar</packaging> <name>ats-demo-agent-actions</name> <description>Former ats-demo-agent-actions project</description> <!-- as shown in ATS videos in YouTube --> <url>https://axway.github.io/ats-framework/Ready-for-use-test-project.html</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <configuration> <target> <property name="compile_classpath" refid="maven.compile.classpath" /> <property name="project_version" value="${project.version}" /> <echo message="compile classpath: ${compile_classpath}" /> <echo message="runtime classpath: ${runtime_classpath}" /> <echo message="test classpath - - - - - -: ${test_classpath}" /> <ant antfile="build.xml" target="all" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!-- Publish client --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>deploy-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.build.directory}/dist/ats-examples-vm-actions-client.jar</file> <type>jar</type> <classifier>client</classifier> </artifact> <artifact> <file>${project.build.directory}/dist/ats-examples-vm-actions-server.jar</file> <type>jar</type> <classifier>service</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. Without it Eclipse shows some irritating error about the maven-antrun-plugin above --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-antrun-plugin </artifactId> <versionRange> [1.7,) </versionRange> <goals> <goal>run</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>com.axway.ats.framework</groupId> <artifactId>ats-actionlibrary</artifactId> </dependency> <dependency> <groupId>com.axway.ats.framework.agent</groupId> <artifactId>ats-agent-core</artifactId> </dependency> </dependencies> </project>