|
116 | 116 | <id>default-descriptor</id> |
117 | 117 | <phase>process-classes</phase> |
118 | 118 | </execution> |
119 | | - <!-- if you want to generate help goal |
120 | | - <execution> |
121 | | - <id>help-goal</id> |
122 | | - <goals> |
123 | | - <goal>helpmojo</goal> |
124 | | - </goals> |
125 | | - </execution> |
126 | | - --> |
127 | 119 | </executions> |
128 | 120 | </plugin> |
129 | 121 |
|
130 | 122 | </plugins> |
131 | 123 |
|
132 | 124 | </build> |
133 | 125 |
|
134 | | - <profiles> |
135 | | - |
136 | | - <profile> |
137 | | - <id>full</id> |
138 | | - <build> |
139 | | - <pluginManagement> |
140 | | - <plugins> |
141 | | - <plugin> |
142 | | - <groupId>org.apache.maven.plugins</groupId> |
143 | | - <artifactId>maven-source-plugin</artifactId> |
144 | | - <version>3.0.1</version> |
145 | | - </plugin> |
146 | | - <plugin> |
147 | | - <groupId>org.apache.maven.plugins</groupId> |
148 | | - <artifactId>maven-javadoc-plugin</artifactId> |
149 | | - <version>2.10.4</version> |
150 | | - </plugin> |
151 | | - </plugins> |
152 | | - </pluginManagement> |
153 | | - </build> |
154 | | - </profile> |
155 | | - |
156 | | - <profile> |
157 | | - <id>doRelease</id> |
158 | | - <build> |
159 | | - <plugins> |
160 | | - <plugin> |
161 | | - <groupId>org.sonatype.plugins</groupId> |
162 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
163 | | - <version>1.6.8</version> |
164 | | - <extensions>true</extensions> |
165 | | - <configuration> |
166 | | - <serverId>ossrh</serverId> |
167 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
168 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
169 | | - </configuration> |
170 | | - </plugin> |
171 | | - |
172 | | - <plugin> |
173 | | - <groupId>org.apache.maven.plugins</groupId> |
174 | | - <artifactId>maven-gpg-plugin</artifactId> |
175 | | - <version>1.5</version> |
176 | | - <executions> |
177 | | - <execution> |
178 | | - <id>sign-artifacts</id> |
179 | | - <phase>verify</phase> |
180 | | - <goals> |
181 | | - <goal>sign</goal> |
182 | | - </goals> |
183 | | - </execution> |
184 | | - </executions> |
185 | | - </plugin> |
186 | | - |
187 | | - </plugins> |
188 | | - </build> |
189 | | - </profile> |
190 | | - |
191 | | - <profile> |
192 | | - <id>singlepackage</id> |
193 | | - <build> |
194 | | - <plugins> |
195 | | - <plugin> |
196 | | - <groupId>org.apache.maven.plugins</groupId> |
197 | | - <artifactId>maven-jar-plugin</artifactId> |
198 | | - <version>3.0.2</version> |
199 | | - <configuration> |
200 | | - <archive> |
201 | | - <manifest> |
202 | | - <addClasspath>true</addClasspath> |
203 | | - <mainClass>org.fugerit.java.yaml.doc.YamlDocMain</mainClass> |
204 | | - </manifest> |
205 | | - </archive> |
206 | | - </configuration> |
207 | | - </plugin> |
208 | | - <plugin> |
209 | | - <groupId>org.apache.maven.plugins</groupId> |
210 | | - <artifactId>maven-shade-plugin</artifactId> |
211 | | - <version>3.1.0</version> |
212 | | - <executions> |
213 | | - <execution> |
214 | | - <phase>package</phase> |
215 | | - <goals> |
216 | | - <goal>shade</goal> |
217 | | - </goals> |
218 | | - </execution> |
219 | | - </executions> |
220 | | - <configuration> |
221 | | - <finalName>dist-${project.artifactId}-${project.version}</finalName> |
222 | | - </configuration> |
223 | | - </plugin> |
224 | | - </plugins> |
225 | | - </build> |
226 | | - </profile> |
227 | | - </profiles> |
228 | | - |
229 | 126 | <organization> |
230 | 127 | <url>http://www.fugerit.org</url> |
231 | 128 | <name>Fugerit</name> |
|
0 commit comments