mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 07:19:22 +00:00
core ES6 pom.xml modifications for release
This commit is contained in:
parent
13ce785f2e
commit
f26196b13b
@ -5,11 +5,30 @@
|
|||||||
<artifactId>jsweet-core</artifactId>
|
<artifactId>jsweet-core</artifactId>
|
||||||
<name>JSweet Core Lib</name>
|
<name>JSweet Core Lib</name>
|
||||||
<description>JavaScript API for JSweet</description>
|
<description>JavaScript API for JSweet</description>
|
||||||
<version>6-SNAPSHOT</version>
|
<version>6</version>
|
||||||
<properties>
|
|
||||||
<jsweet.transpiler.version>2.0.0</jsweet.transpiler.version>
|
<developers>
|
||||||
</properties>
|
<developer>
|
||||||
<repositories>
|
<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>
|
||||||
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>jsweet-central</id>
|
<id>jsweet-central</id>
|
||||||
<name>libs-release</name>
|
<name>libs-release</name>
|
||||||
@ -55,7 +74,7 @@
|
|||||||
<fork>true</fork>
|
<fork>true</fork>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-antrun-plugin</artifactId>
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
<version>1.8</version>
|
<version>1.8</version>
|
||||||
@ -65,9 +84,9 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<target>
|
<target>
|
||||||
<echo message="copying generated bundles to dist..." />
|
<echo message="copying generated bundles to dist..." />
|
||||||
|
|
||||||
<mkdir dir="dist/"></mkdir>
|
<mkdir dir="dist/"></mkdir>
|
||||||
|
|
||||||
<copy
|
<copy
|
||||||
file="src/main/resources/src/typings/${project.artifactId}/${project.version}/bundle.d.ts"
|
file="src/main/resources/src/typings/${project.artifactId}/${project.version}/bundle.d.ts"
|
||||||
tofile="dist/${project.artifactId}.d.ts" verbose="true"
|
tofile="dist/${project.artifactId}.d.ts" verbose="true"
|
||||||
@ -99,7 +118,7 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
@ -111,10 +130,11 @@
|
|||||||
<encoding>UTF-8</encoding>
|
<encoding>UTF-8</encoding>
|
||||||
<fixTags>all</fixTags>
|
<fixTags>all</fixTags>
|
||||||
<failOnError>false</failOnError>
|
<failOnError>false</failOnError>
|
||||||
<!-- leave these options unchanged to place the Javadoc at the right place for jsweet.org -->
|
<!-- leave these options unchanged to place the Javadoc at the right
|
||||||
<reportOutputDirectory>/var/www/apidocs/org/jsweet</reportOutputDirectory>
|
place for jsweet.org -->
|
||||||
<destDir>${project.artifactId}/${project.version}</destDir>
|
<reportOutputDirectory>/var/www/apidocs/org/jsweet</reportOutputDirectory>
|
||||||
<!-- end of jsweet.org configuration -->
|
<destDir>${project.artifactId}/${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>
|
<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>
|
<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>
|
<stylesheetfile>/var/www/apidocs/stylesheet.css</stylesheetfile>
|
||||||
@ -129,7 +149,7 @@
|
|||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<!--This plugin's configuration is used to store Eclipse m2e settings
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user