tink
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.tink</groupId>
<artifactId>tink</artifactId>
<version>0.0.1</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.sourceforge.tink</groupId>
<artifactId>tink</artifactId>
<packaging>pom</packaging>
<version>0.0.1</version>
<name>Tink HTML templating</name>
<description>Web site generator/decorator tool. Transform simple HTML documents to navigable web site based on page templates. Comes with sample web site templates.</description>
<url>http://tink.sourceforge.net/</url>
<scm>
<connection>scm:svn:https://tink.svn.sourceforge.net/svnroot/tink/tags/tink-0.0.1</connection>
<developerConnection>scm:svn:https://tink.svn.sourceforge.net/svnroot/tink/tags/tink-0.0.1</developerConnection>
</scm>
<inceptionYear>2008</inceptionYear>
<distributionManagement>
<repository>
<id>tink-release</id>
<name>tink releases on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/t/ti/tink/repository/release</url>
</repository>
<snapshotRepository>
<id>tink-snapshot</id>
<name>tink snapshots on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/t/ti/tink/repository/snapshot</url>
</snapshotRepository>
<site>
<id>tink-site</id>
<name>tink site on SourceForge</name>
<url>scp://shell.sourceforge.net/home/groups/t/ti/tink/htdocs</url>
</site>
</distributionManagement>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ivan</id>
<name>Ivan SZKIBA</name>
<email>szkiba at SourceForge</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-1</timezone>
</developer>
</developers>
<modules>
<module>tink-model</module>
<module>tink-ant</module>
<module>tink-maven</module>
<module>tink-app</module>
<module>tink-sample</module>
</modules>
<properties>
<topdir />
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<descriptors>
<descriptor>src/main/assembly/src.xml</descriptor>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.0-beta-2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
<configuration>
<revisionOnScmFailure>0</revisionOnScmFailure>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.3.1</version>
<inherited>true</inherited>
<configuration>
<aggregate>true</aggregate>
<encoding>UTF-8</encoding>
<useDefaultExcludes>true</useDefaultExcludes>
<header>${topdir}/HEADER.txt</header>
<excludes>
<exclude>**/org/**</exclude>
<exclude>**/META-INF/services/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>test.work.directory</name>
<value>${project.build.directory}/test</value>
</property>
<property>
<name>test.resource.directory</name>
<value>${basedir}/src/test/resources</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<aggregate>true</aggregate>
<excludes>
<exclude>**/org/jdesktop/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
<excludePackageNames>org.jdesktop.*</excludePackageNames>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
<!-- <report>test-javadoc</report> -->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<aggregate>false</aggregate>
<tags>
<tag>TODO</tag>
<tag>FIXME</tag>
<tag>XXX</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<ignores>
<ignore>org.jdesktop.*</ignore>
</ignores>
<excludes>
<exclude>**/org/jdesktop/**</exclude>
</excludes>
</instrumentation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>summary</report>
<report>license</report>
<report>project-team</report>
<report>dependencies</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>