mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
292 lines
8.8 KiB
XML
292 lines
8.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>1.0.0-SNAPSHOT</version>
|
|
<name>JSweet transpiler</name>
|
|
<description>Programming Web applications with Java 8</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>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<id>diff_match_patch</id>
|
|
<url>http://google-diff-match-patch.googlecode.com/svn/trunk/maven</url>
|
|
</repository>
|
|
<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>
|
|
</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>
|
|
<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-javadoc-plugin</artifactId>
|
|
<version>2.10.3</version>
|
|
<configuration>
|
|
<javadocVersion>1.8</javadocVersion>
|
|
<sourcepath>src/main/java</sourcepath>
|
|
<encoding>UTF-8</encoding>
|
|
<fixTags>all</fixTags>
|
|
<failOnError>false</failOnError>
|
|
<reportOutputDirectory>/var/www/apidocs/org/jsweet</reportOutputDirectory>
|
|
<destDir>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>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.4.0</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<executable>pandoc</executable>
|
|
<workingDirectory>doc</workingDirectory>
|
|
<arguments>
|
|
<argument>-r</argument>
|
|
<argument>latex</argument>
|
|
<argument>-w</argument>
|
|
<argument>markdown_github</argument>
|
|
<argument>--base-header-level=2</argument>
|
|
<argument>-s</argument>
|
|
<argument>--toc</argument>
|
|
<argument>--number-sections</argument>
|
|
<argument>-B</argument>
|
|
<argument>header.md</argument>
|
|
<argument>-o</argument>
|
|
<argument>jsweet-language-specifications.md</argument>
|
|
<argument>jsweet-language-specifications.tex</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</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>diff_match_patch</groupId>
|
|
<artifactId>diff_match_patch</artifactId>
|
|
<version>current</version>
|
|
</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>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>3.20.0-GA</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.candies</groupId>
|
|
<artifactId>jsweet-core</artifactId>
|
|
<version>1.0.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>body-parser</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>node</artifactId>
|
|
<version>4.0.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>errorhandler</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>socket.io</artifactId>
|
|
<version>1.3.50001-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
<version>1.10.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>angular</artifactId>
|
|
<version>1.4.1-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>angular-route</artifactId>
|
|
<version>1.3.1-SNAPSHOT</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> |