prototype-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.disy.prototype</groupId>
<artifactId>prototype-parent</artifactId>
<version>3</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.disy.prototype</groupId>
<artifactId>prototype-parent</artifactId>
<version>3</version>
<packaging>pom</packaging>
<name>Prototype Parent</name>
<description>Prototype is a JavaScript Framework that aims to ease development of dynamic web applications.</description>
<parent>
<groupId>net.disy.legato</groupId>
<artifactId>legato-project</artifactId>
<version>1</version>
</parent>
<scm>
<connection>scm:svn:https://legato.svn.sourceforge.net/svnroot/legato/legato-thirdparty/prototype/trunk/prototype-parent</connection>
<developerConnection>scm:svn:https://legato.svn.sourceforge.net/svnroot/legato/legato-thirdparty/prototype/trunk/prototype-parent</developerConnection>
<url>http://legato.svn.sourceforge.net/viewvc/legato/legato-thirdparty/prototype/trunk/prototype-parent</url>
</scm>
<developers>
<developer>
<id>prototype</id>
<name>Prototype Core Team</name>
</developer>
</developers>
<licenses>
<license>
<name>MIT</name>
<url>http://github.com/sstephenson/prototype/raw/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>../prototype</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<defaultGoal>install</defaultGoal>
<resources>
<resource>
<directory>src/main/javascript</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<inherited>true</inherited>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-optional</artifactId>
<version>1.5.3-1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>