no-more-tears-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kohsuke.no-more-tears</groupId>
<artifactId>no-more-tears-parent</artifactId>
<version>1.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>pom</artifactId>
<version>6</version>
</parent>
<groupId>org.kohsuke.no-more-tears</groupId>
<artifactId>no-more-tears-parent</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>No More Tears</name>
<description>Defer the resolution of symbols to runtime with invokeDynamic</description>
<modules>
<module>runtime</module>
<module>transformer</module>
<module>maven-plugin</module>
<module>test</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git@github.com/kohsuke/no-more-tears.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kohsuke/no-more-tears.git</developerConnection>
<url>http://no-more-tears.kohsuke.org/</url>
</scm>
<distributionManagement>
<site>
<id>github-pages</id>
<url>gitsite:git@github.com/kohsuke/no-more-tears.git</url>
</site>
</distributionManagement>
<developers>
<developer>
<id>kohsuke</id>
<name>Kohsuke Kawaguchi</name>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<distribution>repository</distribution>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
</project>