tablefilter-swing-java5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.coderazzi</groupId>
<artifactId>tablefilter-swing-java5</artifactId>
<version>4.5.0</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> <groupId>net.coderazzi</groupId> <artifactId>tablefilter-swing-java5</artifactId> <packaging>jar</packaging> <version>4.5.0</version> <name>tablefilter-swing-java5</name> <description>TableFilter is a set of Swing components to support user-driven filtering on table. This project corresponds to the Java5 version</description> <url>http://coderazzi.net/tablefilter</url> <organization> <name>coderazzi</name> <url>http://coderazzi.net</url> </organization> <developers> <developer> <organization>coderazzi</organization> <name>LuisM Pena</name> <email>lu@coderazzi.net</email> </developer> </developers> <licenses> <license> <name>MIT</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <issueManagement> <url>http://code.google.com/p/tablefilter-swing/issues/list</url> </issueManagement> <scm> <url>scm:hg:file:///home/luismi/development/workspace/tablefilter-swing-java5</url> <connection>scm:hg:file:///home/luismi/development/workspace/tablefilter-swing-java5</connection> <developerConnection>scm:hg:file:///home/luismi/development/workspace/tablefilter-swing-java5</developerConnection> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <tagBase>file:///home/luismi/development/workspace/tablefilter-swing-java5</tagBase> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doctitle>TableFilter</doctitle> <show>protected</show> <excludePackageNames>net.coderazzi.filters.gui.editor</excludePackageNames> <links> <link>http://java.sun.com/javase/6/docs/api/</link> </links> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <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> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>