Skip to content

Commit e60bc0e

Browse files
committed
pom modification to publish to public repository
1 parent 085d497 commit e60bc0e

File tree

1 file changed

+32
-15
lines changed

1 file changed

+32
-15
lines changed

pom.xml

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -166,28 +166,44 @@
166166
</execution>
167167
</executions>
168168
</plugin>
169-
<plugin>
170-
<groupId>org.apache.maven.plugins</groupId>
171-
<artifactId>maven-gpg-plugin</artifactId>
172-
<version>1.4</version>
173-
<executions>
174-
<execution>
175-
<id>sign-artifacts</id>
176-
<phase>verify</phase>
177-
<goals>
178-
<goal>sign</goal>
179-
</goals>
180-
</execution>
181-
</executions>
182-
</plugin>
183169
</plugins>
184170
</build>
185171

172+
<profiles>
173+
<profile>
174+
<id>sign-artifacts</id>
175+
<build>
176+
<plugins>
177+
<plugin>
178+
<groupId>org.apache.maven.plugins</groupId>
179+
<artifactId>maven-gpg-plugin</artifactId>
180+
<version>1.4</version>
181+
<executions>
182+
<execution>
183+
<id>sign-artifacts</id>
184+
<phase>verify</phase>
185+
<goals>
186+
<goal>sign</goal>
187+
</goals>
188+
</execution>
189+
</executions>
190+
</plugin>
191+
</plugins>
192+
</build>
193+
</profile>
194+
</profiles>
195+
186196
<properties>
187197
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
188198
</properties>
189199

190-
<description>This is a fork of
200+
<description>
201+
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
202+
The generated hierarchy can be navigated using the Visitor Pattern.
203+
204+
-----------------
205+
206+
This is a fork of
191207
Project Info: http://jsqlparser.sourceforge.net
192208
Project Lead: Leonardo Francalanci ([email protected]);
193209
</description>
@@ -196,6 +212,7 @@
196212
<plugin>
197213
<groupId>org.codehaus.mojo</groupId>
198214
<artifactId>javacc-maven-plugin</artifactId>
215+
<version>2.6</version>
199216
</plugin>
200217
</plugins>
201218
</reporting>

0 commit comments

Comments
 (0)