mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
331 lines
9.8 KiB
XML
331 lines
9.8 KiB
XML
<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>
|
|
<groupId>org.jsweet</groupId>
|
|
<artifactId>jsweet-transpiler</artifactId>
|
|
<version>2.0.0-rc1</version>
|
|
<name>JSweet transpiler</name>
|
|
<description>A Java to TypeScript/JavaScript Open Transpiler</description>
|
|
<developers>
|
|
<developer>
|
|
<id>rpawlak</id>
|
|
<name>Renaud Pawlak</name>
|
|
<email>renaud.pawlak@gmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<properties>
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<id>jsweet-central</id>
|
|
<name>libs-release</name>
|
|
<url>http://repository.jsweet.org/artifactory/libs-release-local</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots />
|
|
<id>jsweet-snapshots</id>
|
|
<name>libs-snapshot</name>
|
|
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jsweet-external</id>
|
|
<name>libs-release</name>
|
|
<url>http://repository.jsweet.org/artifactory/ext-release-local</url>
|
|
</repository>
|
|
</repositories>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.18.1</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<configuration>
|
|
<filesets>
|
|
<fileset>
|
|
<directory>.jsweet</directory>
|
|
</fileset>
|
|
</filesets>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>org.jsweet.JSweetCommandLineLauncher</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attached</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.3</version>
|
|
<configuration>
|
|
<javadocVersion>1.8</javadocVersion>
|
|
<sourcepath>src/main/java</sourcepath>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
<skip>${skipJavadoc}</skip>
|
|
<fixTags>all</fixTags>
|
|
<failOnError>false</failOnError>
|
|
<reportOutputDirectory>/var/www/apidocs/org/jsweet</reportOutputDirectory>
|
|
<destDir>target/jsweet-transpiler-${project.version}</destDir>
|
|
<header><![CDATA[<a href="http://www.jsweet.org" target="_blank" style="text-transform: lowercase">http://www.jsweet.org<a>]]></header>
|
|
<bottom><![CDATA[<center>Copyright 2015, <a href="http://www.cincheo.org" target="_blank">Cinchéo SAS<a> - Web site: <a href="http://www.jsweet.org" target="_blank">http://www.jsweet.org<a><center>]]></bottom>
|
|
<stylesheetfile>/var/www/apidocs/stylesheet.css</stylesheetfile>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>edu.princeton.cup</groupId>
|
|
<artifactId>java-cup</artifactId>
|
|
<version>10k</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.jflex</groupId>
|
|
<artifactId>jflex</artifactId>
|
|
<version>1.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.2.4</version>
|
|
<scope>compile</scope>
|
|
<optional>false</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.martiansoftware</groupId>
|
|
<artifactId>jsap</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.6.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.javascript</groupId>
|
|
<artifactId>closure-compiler</artifactId>
|
|
<version>v20161201</version>
|
|
</dependency>
|
|
<!-- Compile-time only dependency (JSweet looks up installed JDK at runtime
|
|
to conform to legal obligations) -->
|
|
<dependency>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>tools</artifactId>
|
|
<version>8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Test-only dependencies for testing candies -->
|
|
<dependency>
|
|
<groupId>org.jsweet</groupId>
|
|
<artifactId>jsweet-core</artifactId>
|
|
<version>5-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.trusted</groupId>
|
|
<artifactId>es6-promise</artifactId>
|
|
<version>0.0.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
<version>1.10.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>jqueryui</artifactId>
|
|
<version>1.11.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>backbone</artifactId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>angular</artifactId>
|
|
<version>1.4.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>angular-route</artifactId>
|
|
<version>1.2.0-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>node</artifactId>
|
|
<version>7.5.0</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>express</artifactId>
|
|
<version>4.14.0</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>express-errorhandler</artifactId>
|
|
<version>4.14.0</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>express-body-parser</artifactId>
|
|
<version>4.14.0</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>socket.io</artifactId>
|
|
<version>1.4.5</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies.ext</groupId>
|
|
<artifactId>threejs</artifactId>
|
|
<version>75-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.ws.rs</groupId>
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
<version>2.1-m07</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<organization>
|
|
<name>JSweet</name>
|
|
<url>http://www.jsweet.org</url>
|
|
</organization>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>jsweet-release</id>
|
|
<name>libs-release</name>
|
|
<url>http://repository.jsweet.org/artifactory/libs-release-local</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>jsweet-snapshots</id>
|
|
<name>libs-snapshot</name>
|
|
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|