|
70 | 70 | <sourceDirectory>${project.basedir}/src</sourceDirectory>
|
71 | 71 | <testSourceDirectory>${project.basedir}/junit</testSourceDirectory>
|
72 | 72 | <plugins>
|
73 |
| - <plugin> |
74 |
| - <groupId>org.apache.maven.plugins</groupId> |
75 |
| - <artifactId>maven-source-plugin</artifactId> |
76 |
| - <version>3.2.0</version> |
77 |
| - <executions> |
78 |
| - <execution> |
79 |
| - <id>attach-sources</id> |
80 |
| - <goals> |
81 |
| - <goal>jar-no-fork</goal> |
82 |
| - </goals> |
83 |
| - </execution> |
84 |
| - </executions> |
85 |
| - </plugin> |
86 | 73 | <plugin>
|
87 | 74 | <groupId>org.apache.maven.plugins</groupId>
|
88 | 75 | <artifactId>maven-compiler-plugin</artifactId>
|
89 |
| - <version>3.8.1</version> |
90 | 76 | <executions>
|
91 | 77 | <execution>
|
92 | 78 | <id>default-compile</id>
|
|
102 | 88 | <plugin>
|
103 | 89 | <groupId>org.apache.maven.plugins</groupId>
|
104 | 90 | <artifactId>maven-javadoc-plugin</artifactId>
|
105 |
| - <version>3.1.0</version> |
106 | 91 | <configuration>
|
107 |
| - <source>7</source> |
108 |
| - <quiet>true</quiet> |
109 |
| - <doclint>none</doclint> |
| 92 | + <overview>${project.basedir}/src/overview.html</overview> |
| 93 | + <links> |
| 94 | + <link>https://docs.oracle.com/javase/7/docs/api/</link> |
| 95 | + <link>https://css4j.github.io/api/1.0/</link> |
| 96 | + <link>https://dom4j.github.io/javadoc/2.1.1/</link> |
| 97 | + </links> |
110 | 98 | </configuration>
|
111 |
| - <executions> |
112 |
| - <execution> |
113 |
| - <id>attach-javadocs</id> |
114 |
| - <goals> |
115 |
| - <goal>jar</goal> |
116 |
| - </goals> |
117 |
| - </execution> |
118 |
| - </executions> |
119 | 99 | </plugin>
|
120 | 100 | <plugin>
|
121 | 101 | <groupId>org.apache.maven.plugins</groupId>
|
122 | 102 | <artifactId>maven-jar-plugin</artifactId>
|
123 |
| - <version>3.2.0</version> |
124 | 103 | <configuration>
|
125 |
| - <archive> |
126 |
| - <manifestEntries> |
127 |
| - <Automatic-Module-Name>io.sf.carte.css4j.dom4j</Automatic-Module-Name> |
128 |
| - </manifestEntries> |
129 |
| - <addMavenDescriptor>false</addMavenDescriptor> |
130 |
| - </archive> |
| 104 | + <archive> |
| 105 | + <manifestEntries> |
| 106 | + <Automatic-Module-Name>io.sf.carte.css4j.dom4j</Automatic-Module-Name> |
| 107 | + </manifestEntries> |
| 108 | + <addMavenDescriptor>false</addMavenDescriptor> |
| 109 | + </archive> |
131 | 110 | </configuration>
|
132 | 111 | <executions>
|
133 | 112 | <execution>
|
|
162 | 141 | </testResource>
|
163 | 142 | </testResources>
|
164 | 143 | </build>
|
165 |
| - <reporting> |
166 |
| - <plugins> |
167 |
| - <plugin> |
168 |
| - <groupId>org.apache.maven.plugins</groupId> |
169 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
170 |
| - <version>3.1.0</version> |
171 |
| - <configuration> |
172 |
| - <reportOutputDirectory>${project.build.directory}/doc</reportOutputDirectory> |
173 |
| - <destDir>api</destDir> |
174 |
| - </configuration> |
175 |
| - <reportSets> |
176 |
| - <reportSet> |
177 |
| - <id>default</id> |
178 |
| - <reports> |
179 |
| - <report>javadoc</report> |
180 |
| - </reports> |
181 |
| - </reportSet> |
182 |
| - </reportSets> |
183 |
| - </plugin> |
184 |
| - </plugins> |
185 |
| - </reporting> |
186 | 144 | <scm>
|
187 | 145 | <connection>scm:git:https://github.com/css4j/css4j-dom4j.git</connection>
|
188 | 146 | <url>https://github.com/css4j/css4j-dom4j</url>
|
|
0 commit comments