snap-external
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.snapscript</groupId>
<artifactId>snap-external</artifactId>
<version>1.4.6</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>org.snapscript</groupId>
<artifactId>snap-external</artifactId>
<packaging>jar</packaging>
<version>1.4.6</version>
<name>Snap External</name>
<url>http://www.snapscript.org</url>
<description>Dynamic scripting for the JVM</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/snapscript/snap-external</url>
<connection>scm:git:git://github.com/snapscript/snap-external.git</connection>
<developerConnection>scm:git:git@github.com:snapscript/snap-external.git</developerConnection>
</scm>
<developers>
<developer>
<id>niallg</id>
<name>Niall Gallagher</name>
<email>niallg@users.sf.net</email>
</developer>
</developers>
<dependencies><dependency><groupId>org.snapscript</groupId><artifactId>snap</artifactId><version>1.4.6</version></dependency></dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>