mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
221 lines
7.2 KiB
XML
221 lines
7.2 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>
|
|
|
|
<parent>
|
|
<groupId>org.jsweet</groupId>
|
|
<artifactId>jsweet-parent</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
<relativePath>../../</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>jsweet-core</artifactId>
|
|
<version>5.3.1-SNAPSHOT</version>
|
|
|
|
<name>JSweet Core Lib</name>
|
|
<description>JavaScript API for JSweet</description>
|
|
<url>http://www.jsweet.org</url>
|
|
<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>8</java.version.release>
|
|
<java.version>1.${java.version.release}</java.version>
|
|
</properties>
|
|
|
|
<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>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<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-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<sourcepath>src/main/java</sourcepath>
|
|
<skip>${skipJavadoc}</skip>
|
|
<encoding>UTF-8</encoding>
|
|
<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>${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>
|
|
<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-javadoc</id>
|
|
<goals>
|
|
<goal>jar</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.0.0,)</versionRange>
|
|
<goals>
|
|
<goal>jsweet</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>signed</id>
|
|
<activation>
|
|
<property>
|
|
<name>signed</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<configuration>
|
|
<skip>${skipSigning}</skip>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>use-snapshots</id>
|
|
<activation>
|
|
<property>
|
|
<name>use-snapshots</name>
|
|
</property>
|
|
</activation>
|
|
<repositories>
|
|
<repository>
|
|
<id>snapshots-repo</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>apache.snapshots</id>
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>sonatype.snapshots</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<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>
|