dbgpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dk.au.ece.vdmj</groupId> <artifactId>dbgpc</artifactId> <version>4.6.0-P</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>dbgpc</artifactId> <name>DBGP Client</name> <parent> <groupId>dk.au.ece.vdmj</groupId> <artifactId>vdmj-suite</artifactId> <version>4.6.0-P</version> <relativePath>../pom.xml</relativePath> </parent> <developers> <developer> <id>NickBattle</id> <name>Nick Battle</name> <email>nick.battle@gmail.com</email> <organization>Fujitsu UK</organization> <organizationUrl>http://uk.fujitsu.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <configuration> <archive> <manifestEntries> <Main-Class>com.fujitsu.vdmjc.DBGPC</Main-Class> <Implementation-Version>${maven.build.timestamp}</Implementation-Version> <Class-Path>.</Class-Path> </manifestEntries> </archive> </configuration> </execution> <execution> <id>documentation</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classesDirectory>${basedir}</classesDirectory> <includes> <include>documentation/**.pdf</include> </includes> <classifier>docs</classifier> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>