Maven Repository - POM file for Scripting clojure-contrib 1.2.0 1.2.0

Summary

${artifactId}.

Clojure user contributions library..

Declaration

Here is the list of declaration for clojure-contrib. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.clojure</groupId>
   <artifactId>clojure-contrib</artifactId>
   <version>1.2.0</version>
</dependency>

If you think this Maven repository POM file listing for clojure-contrib is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Eclipse Public License 1.0
URL: http://opensource.org/licenses/eclipse-1.0.php.

Depends on

The clojure-contrib-1.2.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Scriptingclojure 1.2.0
Clojure core environment and runtime library.
5




Depended by

The following table lists the most popular artifacts which are depending on clojure-contrib-1.2.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Web Frameworkhiccup 0.3.6
A fast library for rendering HTML in Clojure
5

Plugin

The following plugins are used in the clojure-contrib-1.2.0.jar

  1. clojure-maven-plugin
  2. maven-assembly-plugin

Packages

The following packages are defined in the clojure-contrib-1.2.0.jar

clojure.contrib
clojure.contrib.condition
clojure.contrib.fnmap
clojure.contrib.jmx




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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">
  <properties>
    <clojure.version>1.2.0</clojure.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.clojure</groupId>
  <artifactId>clojure-contrib</artifactId>
  <version>1.2.0</version>
  <url>http://clojure.org/</url>
  <description>Clojure user contributions library.</description>
  <name>${artifactId}</name>
  <licenses>
    <license>
      <name>Eclipse Public License 1.0</name>
      <url>http://opensource.org/licenses/eclipse-1.0.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <dependencies>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure</artifactId>
      <version>${clojure.version}</version>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>clojure-snapshots</id>
      <url>http://build.clojure.org/snapshots</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
  <profiles>
    <profile>
      <id>local</id>
      <activation>
        <property>
          <name>clojure.jar</name>
        </property>
      </activation>
      <dependencies>
        <dependency>
          <groupId>org.clojure</groupId>
          <artifactId>clojure</artifactId>
          <version>${clojure.version}</version>
          <scope>system</scope>
          <systemPath>${clojure.jar}</systemPath>
        </dependency>
      </dependencies>
    </profile>
  </profiles>
  <build>
    <resources>
      <resource>
        <directory>src/main/clojure</directory>
      </resource>
      <resource>
        <directory>src/examples/clojure</directory>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>src/test/clojure</directory>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <groupId>com.theoryinpractise</groupId>
        <artifactId>clojure-maven-plugin</artifactId>
        <version>1.3.2</version>
        <configuration>
          <compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
          <namespaces>
            <namespace>clojure\.contrib\.jmx\.Bean</namespace>
            <namespace>clojure\.contrib\.fnmap\.PersistentFnMap</namespace>
            <namespace>clojure\.contrib\.condition\.Condition</namespace>
            <namespace>clojure\.contrib\.repl-ln</namespace>
          </namespaces>
        </configuration>
        <executions>
          <execution>
            <id>compile-clojure</id>
            <phase>compile</phase>
            <goals>
              <goal>compile</goal>
            </goals>
          </execution>
          <execution>
            <id>test-clojure</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/dist.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <distributionManagement>
    <repository>
      <id>clojure-releases</id>
      <url>scp://build.clojure.org/srv/www/releases</url>
    </repository>
  </distributionManagement>
</project>