mootools-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nanoko.libs</groupId> <artifactId>mootools-core</artifactId> <version>1.4.5</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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.nanoko.libs</groupId> <artifactId>mootools-core</artifactId> <version>1.4.5</version> <packaging>pom</packaging> <name>OW2 Nanoko - Library ~ Mootools-Core</name> <description>The Mootools JavaScript library (http://mootools.net/)</description> <inceptionYear>2013</inceptionYear> <url>https://github.com/nanoko-project</url> <organization> <name>OW2</name> <url>http://ow2.org</url> </organization> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Clement Escoffier</name> <email>clement.escoffier@gmail.[NO-SPAM]com</email> <organization>Dynamis Technologies</organization> <properties> <github>cescoffier</github> </properties> </developer> </developers> <distributionManagement> <!-- We deploy on the 3rd party repository --> <repository> <id>${repo.thirdparty.id}</id> <name>${repo.thirdparty.name}</name> <url>${repo.thirdparty.url}</url> <uniqueVersion>false</uniqueVersion> </repository> <snapshotRepository> <id>${repo.snapshots.id}</id> <name>${repo.snapshots.name}</name> <url>${repo.snapshots.url}</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>attach</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <!-- compat file does not use any classifier --> <artifact> <file>${project.basedir}/src/main/js/${artifactId}-${project.version}-full-compat-yc.js</file> <type>js</type> <classifier>min</classifier> </artifact> <artifact> <file>${project.basedir}/src/main/js/${artifactId}-${project.version}-full-compat.js</file> <type>js</type> </artifact> <!-- nocompat file preprend nocompat to the classifier --> <artifact> <file>${project.basedir}/src/main/js/${artifactId}-${project.version}-full-nocompat.js</file> <type>js</type> <classifier>nocompat</classifier> </artifact> <artifact> <file>${project.basedir}/src/main/js/${artifactId}-${project.version}-full-nocompat-yc.js</file> <type>js</type> <classifier>nocompat-min</classifier> </artifact> <!-- server version --> <artifact> <file>${project.basedir}/src/main/js/${artifactId}-${project.version}-server.js</file> <type>js</type> <classifier>server</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>