mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
add javadoc plugin
This commit is contained in:
parent
7c35941229
commit
a612603ef5
@ -15,27 +15,51 @@
|
|||||||
<encoding>${project.build.sourceEncoding}</encoding>
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- <plugin>
|
|
||||||
<groupId>org.jsweet</groupId>
|
<plugin>
|
||||||
<artifactId>jsweet-maven-plugin</artifactId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<version>2.0.0-SNAPSHOT</version>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<verbose>true</verbose>
|
|
||||||
<definitions>true</definitions>
|
|
||||||
<tsOnly>true</tsOnly>
|
|
||||||
<tsOut>src/main/resources/src/typings/${project.artifactId}/${project.version}</tsOut>
|
|
||||||
<bundle>true</bundle>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>generate-js</id>
|
<id>attach-sources</id>
|
||||||
<phase>generate-sources</phase>
|
|
||||||
<goals>
|
<goals>
|
||||||
<goal>jsweet</goal>
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<phase>deploy</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin> -->
|
</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>
|
||||||
|
<skip>${skipJavadoc}</skip>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
<fixTags>all</fixTags>
|
||||||
|
<failOnError>false</failOnError>
|
||||||
|
<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>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user