swingx-core
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.swinglabs</groupId> <artifactId>swingx-core</artifactId> <version>1.6.2-2</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/maven-v4_0_0.xsd"> <parent> <groupId>org.swinglabs</groupId> <artifactId>swingx-project</artifactId> <version>1.6.2-2</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>swingx-core</artifactId> <packaging>jar</packaging> <name>SwingX Core</name> <dependencies> <dependency> <groupId>com.jhlabs</groupId> <artifactId>filters</artifactId> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <type>jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!--plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin--> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <inherited>true</inherited> <configuration> <!-- useSystemClassLoader>true</useSystemClassLoader--> <includes> <include>**/*Test.java</include> </includes> <forkMode>always</forkMode> <!--reportFormat>xml</reportFormat--> <!--classesDirectory>${project.build.directory}/emma-classes</classesDirectory--> </configuration> </plugin> <!--plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId> <version>1.0-alpha-2</version> <inherited>true</inherited> <executions> <execution> <goals> <goal>instrument</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.sf.jmd</groupId> <artifactId>maven-crap4j-plugin</artifactId> <version>0.1.1-SNAPSHOT</version> <configuration> <projectDir>${basedir}</projectDir> <crap4jHome>lib/build-only/crap4j</crap4jHome> <reportsCrap4j>target/site/crap4j-reports</reportsCrap4j> <libClasspath>lib</libClasspath> </configuration> <executions> <execution> <phase>site</phase> <goals> <goal>crap4j</goal> <goal>crap4jAnt</goal> </goals> </execution> </executions> </plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>