| Group ID: |
com.googlecode.jslint4java |
| Artifact ID: |
jslint4java-ant |
| Last modified: |
31.07.2009 13:29 |
| Packaging: |
jar |
| Name: |
jslint4java ant task |
| Description: |
An ant task to run JSLint. |
|
|
| Size: |
14.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/googlecode/jslint4java/jslint4java-ant/1.3.1/jslint4java-ant-1.3.1.jar |
| POM: |
Show
hide
<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>
<artifactId>jslint4java-ant</artifactId>
<name>jslint4java ant task</name>
<description>An ant task to run JSLint.</description>
<parent>
<groupId>com.googlecode.jslint4java</groupId>
<artifactId>jslint4java-parent</artifactId>
<version>1.3.1</version>
</parent>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jslint4java</artifactId>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-antunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="${project.build.testOutputDirectory}/antunit/tests.xml" inheritAll="false" inheritRefs="false">
<property name="test.classpath" refid="maven.test.classpath" />
<property name="test.skipped" value="${maven.test.skip}" />
</ant>
</tasks>
</configuration>
</execution>
</executions>
<dependencies>
<!-- Force an upgrade to a newer ant version. Required by antunit. -->
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dist</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>make-shaded-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.googlecode.jslint4java.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>com.googlecode.jslint4java</groupId>
<artifactId>jslint4java-ant</artifactId>
<version>1.3.1</version>
</dependency>
|
| Gradle: |
com.googlecode.jslint4java:jslint4java-ant:1.3.1 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Used by: iArtifacts that declare a dependency on this library - on any version, not necessarily this exact one. |
|
| Dependency Graph: |
Show
Less
More
|