mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-14 23:09:22 +00:00
add javadoc plugin
This commit is contained in:
parent
7c35941229
commit
a612603ef5
@ -15,27 +15,51 @@
|
||||
<encoding>${project.build.sourceEncoding}</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- <plugin>
|
||||
<groupId>org.jsweet</groupId>
|
||||
<artifactId>jsweet-maven-plugin</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<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>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-js</id>
|
||||
<phase>generate-sources</phase>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jsweet</goal>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<phase>deploy</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</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>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user