|
46 | 46 | <sourceDirectory>${project.basedir}/src</sourceDirectory> |
47 | 47 | <testSourceDirectory>${project.basedir}/junit</testSourceDirectory> |
48 | 48 | <plugins> |
49 | | - <plugin> |
50 | | - <groupId>org.apache.maven.plugins</groupId> |
51 | | - <artifactId>maven-source-plugin</artifactId> |
52 | | - <version>3.2.0</version> |
53 | | - <executions> |
54 | | - <execution> |
55 | | - <id>attach-sources</id> |
56 | | - <goals> |
57 | | - <goal>jar-no-fork</goal> |
58 | | - </goals> |
59 | | - </execution> |
60 | | - </executions> |
61 | | - </plugin> |
62 | 49 | <plugin> |
63 | 50 | <groupId>org.apache.maven.plugins</groupId> |
64 | 51 | <artifactId>maven-javadoc-plugin</artifactId> |
65 | | - <version>3.1.0</version> |
66 | 52 | <configuration> |
67 | | - <source>8</source> |
68 | | - <quiet>true</quiet> |
69 | | - <doclint>none</doclint> |
| 53 | + <links> |
| 54 | + <link>https://docs.oracle.com/javase/8/docs/api/</link> |
| 55 | + <link>https://css4j.github.io/api/2.0/</link> |
| 56 | + <link>https://about.validator.nu/htmlparser/apidocs/</link> |
| 57 | + </links> |
70 | 58 | </configuration> |
71 | | - <executions> |
72 | | - <execution> |
73 | | - <id>attach-javadocs</id> |
74 | | - <goals> |
75 | | - <goal>jar</goal> |
76 | | - </goals> |
77 | | - </execution> |
78 | | - </executions> |
79 | 59 | </plugin> |
80 | 60 | <plugin> |
81 | 61 | <groupId>org.apache.maven.plugins</groupId> |
82 | 62 | <artifactId>maven-jar-plugin</artifactId> |
83 | | - <version>3.2.0</version> |
84 | 63 | <configuration> |
85 | | - <archive> |
86 | | - <manifestEntries> |
87 | | - <Automatic-Module-Name>io.sf.carte.css4j.agent.net</Automatic-Module-Name> |
88 | | - </manifestEntries> |
89 | | - <addMavenDescriptor>false</addMavenDescriptor> |
90 | | - </archive> |
| 64 | + <archive> |
| 65 | + <manifestEntries> |
| 66 | + <Automatic-Module-Name>io.sf.carte.css4j.agent.net</Automatic-Module-Name> |
| 67 | + </manifestEntries> |
| 68 | + <addMavenDescriptor>false</addMavenDescriptor> |
| 69 | + </archive> |
91 | 70 | </configuration> |
92 | 71 | </plugin> |
93 | 72 | </plugins> |
|
115 | 94 | </testResource> |
116 | 95 | </testResources> |
117 | 96 | </build> |
118 | | - <reporting> |
119 | | - <plugins> |
120 | | - <plugin> |
121 | | - <groupId>org.apache.maven.plugins</groupId> |
122 | | - <artifactId>maven-javadoc-plugin</artifactId> |
123 | | - <version>3.1.0</version> |
124 | | - <configuration> |
125 | | - <reportOutputDirectory>${project.build.directory}/doc</reportOutputDirectory> |
126 | | - <destDir>api</destDir> |
127 | | - </configuration> |
128 | | - <reportSets> |
129 | | - <reportSet> |
130 | | - <id>default</id> |
131 | | - <reports> |
132 | | - <report>javadoc</report> |
133 | | - </reports> |
134 | | - </reportSet> |
135 | | - </reportSets> |
136 | | - </plugin> |
137 | | - </plugins> |
138 | | - </reporting> |
139 | 97 | <scm> |
140 | 98 | <connection>scm:git:https://github.com/css4j/css4j-agent.git</connection> |
141 | 99 | <url>https://github.com/css4j/css4j-agent</url> |
|
0 commit comments