264 lines
8.2 KiB
XML
264 lines
8.2 KiB
XML
<?xml version="1.0"?>
|
|
<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/xsd/maven-4.0.0.xsd"
|
|
>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.codehaus</groupId>
|
|
<artifactId>codehaus-parent</artifactId>
|
|
<version>4</version>
|
|
</parent>
|
|
|
|
<groupId>org.codehaus.janino</groupId>
|
|
<artifactId>janino-parent</artifactId>
|
|
<version>2.7.8</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Janino Parent</name>
|
|
<description>
|
|
Janino is a compiler that reads a JavaTM expression, block, class body, source file or a set of source files, and
|
|
generates JavaTM bytecode that is loaded and executed directly. Janino is not intended to be a development tool,
|
|
but an embedded compiler for run-time compilation purposes, e.g. expression evaluators or "server pages" engines
|
|
like JSP.
|
|
</description>
|
|
<url>http://docs.codehaus.org/display/JANINO/Home</url>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<licenses>
|
|
<license>
|
|
<name>New BSD License</name>
|
|
<url>http://dist.codehaus.org/janino/new_bsd_license.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>Development List</name>
|
|
<subscribe>dev-subscribe@janino.codehaus.org</subscribe>
|
|
<unsubscribe>dev-unsubscribe@janino.codehaus.org</unsubscribe>
|
|
<post>dev@janino.codehaus.org</post>
|
|
<archive>http://archive.janino.codehaus.org/dev/</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>User List</name>
|
|
<subscribe>user-subscribe@janino.codehaus.org</subscribe>
|
|
<unsubscribe>user-unsubscribe@janino.codehaus.org</unsubscribe>
|
|
<post>user@janino.codehaus.org</post>
|
|
<archive>http://archive.janino.codehaus.org/user/</archive>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Commits List</name>
|
|
<subscribe>scm-subscribe@janino.codehaus.org</subscribe>
|
|
<unsubscribe>scm-unsubscribe@janino.codehaus.org</unsubscribe>
|
|
<archive>http://archive.janino.codehaus.org/scm/</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>aunkrig</id>
|
|
<name>Arno Unkrig</name>
|
|
<roles>
|
|
<role>Despot</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>commons-compiler</module>
|
|
<module>commons-compiler-jdk</module>
|
|
<module>janino</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.codehaus.org/janino/tags/janino_2.7.8/</connection>
|
|
<developerConnection>scm:svn:https://svn.codehaus.org/janino/tags/janino_2.7.8/</developerConnection>
|
|
<url>http://fisheye.codehaus.org/browse/janino/tags/janino_2.7.8/</url>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>Jira</system>
|
|
<url>http://jira.codehaus.org/browse/JANINO</url>
|
|
</issueManagement>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.janino</groupId>
|
|
<artifactId>commons-compiler</artifactId>
|
|
<version>2.7.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.janino</groupId>
|
|
<artifactId>commons-compiler-jdk</artifactId>
|
|
<version>2.7.8</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-nodeps</artifactId>
|
|
<version>1.7.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<testSourceDirectory>tests</testSourceDirectory>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<source>1.2</source>
|
|
<target>1.1</target>
|
|
<testSource>1.6</testSource>
|
|
<testTarget>1.6</testTarget>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<configuration>
|
|
<test>**/*Tests</test>
|
|
<failIfNoTests>false</failIfNoTests>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
<version>1.0-beta-2</version>
|
|
<configuration>
|
|
<format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
|
|
<items>
|
|
<item>timestamp</item>
|
|
</items>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>create</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.4.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.5</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>2.0.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.3</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.1.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>reporting</id>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.5</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<configuration>
|
|
<inputEncoding>${project.build.sourceEncoding}</inputEncoding><!-- not needed in 2.2 -->
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>1.1.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jdepend-maven-plugin</artifactId>
|
|
<version>2.0-beta-2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>javancss-maven-plugin</artifactId>
|
|
<version>2.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|