mirror of
https://github.com/cincheo/jsweet.git
synced 2026-01-30 06:56:24 +00:00
187 lines
5.4 KiB
XML
187 lines
5.4 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>j4ts</artifactId>
|
|
<version>0.4.0</version>
|
|
<properties>
|
|
<jsweet.transpiler.version>1.1.1</jsweet.transpiler.version>
|
|
</properties>
|
|
<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>
|
|
<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>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>jsweet-plugins-release</id>
|
|
<name>plugins-release</name>
|
|
<url>http://repository.jsweet.org/artifactory/plugins-release-local</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<snapshots />
|
|
<id>jsweet-plugins-snapshots</id>
|
|
<name>plugins-snapshot</name>
|
|
<url>http://repository.jsweet.org/artifactory/plugins-snapshot-local</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<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>
|
|
<fork>true</fork>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jsweet</groupId>
|
|
<artifactId>jsweet-maven-plugin</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<configuration>
|
|
<verbose>true</verbose>
|
|
<!-- <sourceMap>true</sourceMap> -->
|
|
<bundle>true</bundle>
|
|
<declaration>true</declaration>
|
|
<outDir>src/main/resources/META-INF/resources/webjars/${project.artifactId}/${project.version}</outDir>
|
|
<dtsOut>src/main/resources/src/typings/${project.artifactId}/${project.version}</dtsOut>
|
|
<targetVersion>ES3</targetVersion>
|
|
<sourceMap>true</sourceMap>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-js</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>jsweet</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>1.8</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>install</phase>
|
|
<configuration>
|
|
<target>
|
|
<echo message="copying generated bundles to dist..." />
|
|
<copy
|
|
file="src/main/resources/META-INF/resources/webjars/${project.artifactId}/${project.version}/bundle.js"
|
|
tofile="dist/${project.artifactId}.js" verbose="true" />
|
|
<copy
|
|
file="src/main/resources/src/typings/${project.artifactId}/${project.version}/bundle.d.ts"
|
|
tofile="dist/${project.artifactId}.d.ts" verbose="true" />
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
|
only. It has no influence on the Maven build itself. -->
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>
|
|
org.jsweet
|
|
</groupId>
|
|
<artifactId>
|
|
jsweet-maven-plugin
|
|
</artifactId>
|
|
<versionRange>
|
|
[1.1.0-SNAPSHOT,)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>jsweet</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet</groupId>
|
|
<artifactId>jsweet-core</artifactId>
|
|
<version>5-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- <dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>sprintf-js</artifactId>
|
|
<version>0.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsweet.candies</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
<version>1.10.0-SNAPSHOT</version>
|
|
</dependency> -->
|
|
</dependencies>
|
|
|
|
<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>
|
|
<organization>
|
|
<name>JSweet</name>
|
|
<url>http://www.jsweet.org</url>
|
|
</organization>
|
|
|
|
</project>
|