Fractal ADL task framework deployment module.
This module provides facilities for deployment tasks..
Here is the list of declaration for task-deployment. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.objectweb.fractal.fractaladl</groupId> <artifactId>task-deployment</artifactId> <version>2.4-alpha-4</version> </dependency>
If you think this Maven repository POM file listing for task-deployment is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the task-deployment-2.4-alpha-4.jar
Here is the content of the POM file.
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.objectweb.fractal.fractaladl</groupId> <artifactId>toolchain-parent</artifactId> <version>2.4-alpha-4</version> </parent> <artifactId>task-deployment</artifactId> <name>Fractal ADL task framework deployment module</name> <description> This module provides facilities for deployment tasks. </description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>task-framework</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <!-- the source code has Java 5.0 language features --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/fractal/tags/fractaladl-2.4-alpha-4/task-deployment</connection> <developerConnection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/fractal/tags/fractaladl-2.4-alpha-4/task-deployment</developerConnection> <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/fractal/tags/fractaladl-2.4-alpha-4/task-deployment</url> </scm> </project>