jace-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.jace</groupId>
<artifactId>jace-core</artifactId>
<version>1.2.22</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.googlecode.jace</groupId>
<artifactId>jace</artifactId>
<version>1.2.22</version>
</parent>
<artifactId>jace-core</artifactId>
<packaging>pom</packaging>
<name>Jace Core</name>
<description>Jace core module</description>
<url>http://code.google.com/p/jace/</url>
<licenses>
<license>
<name>New BSD License</name>
<url>http://en.wikipedia.org/wiki/BSD_licenses#3-clause_license_.28.22New_BSD_License.22.29</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://jace.googlecode.com/hg/</url>
<connection>scm:hg:https://jace.googlecode.com/hg/</connection>
<developerConnection>scm:hg:https://jace.googlecode.com/hg/</developerConnection>
</scm>
<developers>
<developer>
<id>cowwoc</id>
<name>Gili Tzabari</name>
</developer>
</developers>
<modules>
<module>java</module>
<module>cpp</module>
<module>runtime</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>