JTango
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tango-controls</groupId> <artifactId>JTango</artifactId> <version>9.7.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <groupId>org.tango-controls</groupId> <artifactId>JTangoParent</artifactId> <version>9.7.4</version> <relativePath>../parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>JTango</artifactId> <packaging>pom</packaging> <name>JTango full assembly</name> <description>Assembles all JTango modules into a single dependency.</description> <url>https://github.com/tango-controls/JTango</url> <scm> <connection>scm:git:git@github.com:tango-controls/JTango.git</connection> <developerConnection>scm:git:git@github.com:tango-controls/JTango.git</developerConnection> <url>https://github.com/tango-controls/JTango</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/tango-controls/JTango/issues</url> </issueManagement> <licenses> <license> <name>LGPL-3.0</name> </license> </licenses> <organization> <name>Tango Controls</name> <url>http://tango-controls.org</url> </organization> <developers> <developer> <id>verdier</id> <name>Pascal Verdier</name> <email>verdier@esrf.fr</email> <organization>ESRF</organization> <organizationUrl>http://www.esrf.eu</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>1</timezone> </developer> <developer> <id>abeille</id> <name>Gwenaëlle Abeillé</name> <email>gwenaelle.abeille@synchrotron-soleil.fr</email> <organization>Synchrotron Soleil</organization> <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl> <roles> <role>Integrator, Developer</role> </roles> <timezone>1</timezone> </developer> </developers> <contributors> <contributor> <name>Igor Khokhriakov</name> <email>mail@ingvord.ru</email> <timezone>3</timezone> </contributor> </contributors> <properties> <shaded.outputFile>${project.build.directory}/JTango-${project.version}.jar</shaded.outputFile> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>org.tango-controls</groupId> <artifactId>tango-idl-java</artifactId> </dependency> <dependency> <groupId>org.tango-controls</groupId> <artifactId>JTangoServer</artifactId> </dependency> <dependency> <groupId>org.tango-controls</groupId> <artifactId>TangORB</artifactId> </dependency> </dependencies> <build> <finalName>JTango-${project.version}</finalName> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>generate-version-class</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>shade</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <outputFile>${shaded.outputFile}</outputFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>