jsweet-transpiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jsweet</groupId> <artifactId>jsweet-transpiler</artifactId> <version>3.1.0</version> </dependency>
<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>3.1.0</version> <name>JSweet transpiler</name> <description>A Java to TypeScript/JavaScript Open Transpiler</description> <url>http://www.jsweet.org</url> <developers> <developer> <id>rpawlak</id> <name>Renaud Pawlak</name> <email>renaud.pawlak@gmail.com</email> </developer> <developer> <id>lgrignon</id> <name>Louis Grignon</name> <email>louis.grignon@gmail.com</email> </developer> </developers> <issueManagement> <url>https://github.com/cincheo/jsweet/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <url>https://github.com/cincheo/jsweet</url> <connection>scm:git:git://github.com/cincheo/jsweet.git</connection> <developerConnection>scm:git:git@github.com:cincheo/jsweet.git</developerConnection> </scm> <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> <java.version.release>11</java.version.release> <java.version>1.${java.version.release}</java.version> </properties> <repositories> <repository> <id>jsweet-central</id> <name>libs-release</name> <url>https://repository.jsweet.org/artifactory/libs-release-local</url> </repository> <repository> <snapshots /> <id>jsweet-snapshots</id> <name>libs-snapshot</name> <url>https://repository.jsweet.org/artifactory/libs-snapshot-local</url> </repository> <repository> <id>jsweet-external</id> <name>libs-release</name> <url>https://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.8.1</version> <configuration> <release>${java.version.release}</release> <compilerVersion>${java.version}</compilerVersion> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> <compilerArgs> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <forkCount>0</forkCount> <reuseForks>false</reuseForks> <useSystemClassLoader>false</useSystemClassLoader> <includes> <include>**/*.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.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>3.1.1</version><!--$NO-MVN-MAN-VER$ --> <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>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.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>3.1.1</version> <configuration> <sourcepath>src/main/java</sourcepath> <encoding>${project.build.sourceEncoding}</encoding> <skip>${skipJavadoc}</skip> <excludePackageNames>org.jsweet.transpiler.model.support</excludePackageNames> <fixTags>all</fixTags> <failOnError>false</failOnError> <!-- leave these options unchanged to place the Javadoc at the right place for jsweet.org --> <reportOutputDirectory>/var/www/apidocs/org/jsweet</reportOutputDirectory> <destDir>jsweet-transpiler-${project.version}</destDir> <!-- end of jsweet.org configuration --> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <configuration> <skip>${skipSigning}</skip> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.3</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.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.1.0</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.8.6</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.jsweet.ext</groupId> <artifactId>typescript.java-ts.core</artifactId> <version>2.0.3</version> </dependency> <dependency> <groupId>org.jsweet.ext</groupId> <artifactId>sourcemap-builder</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.3.0</version> <scope>compile</scope> </dependency> <!-- Test-only dependencies for testing candies --> <dependency> <groupId>org.jsweet</groupId> <artifactId>jsweet-core</artifactId> <version>6.3.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>jquery</artifactId> <version>1.10.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>jqueryui</artifactId> <version>1.11.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>backbone</artifactId> <version>1.3.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>angular</artifactId> <version>1.4.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>angular-route</artifactId> <version>1.2.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>node</artifactId> <version>7.5.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>express</artifactId> <version>4.14.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>express-errorhandler</artifactId> <version>4.14.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>express-body-parser</artifactId> <version>4.14.0-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>socket.io</artifactId> <version>1.4.5-20170726</version> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jsweet.candies</groupId> <artifactId>threejs</artifactId> <version>75-20171101</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>https://repository.jsweet.org/artifactory/libs-release-local</url> </repository> <snapshotRepository> <id>jsweet-snapshots</id> <name>libs-snapshot</name> <url>https://repository.jsweet.org/artifactory/libs-snapshot-local</url> </snapshotRepository> </distributionManagement> </project>