Skip to content

Commit 085d497

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

File tree

1 file changed

+196
-137
lines changed

1 file changed

+196
-137
lines changed

pom.xml

Lines changed: 196 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,143 +1,202 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>net.sf.jsqlparser</groupId>
4-
<artifactId>jsqlparser</artifactId>
5-
<version>0.8.5-SNAPSHOT</version>
6-
<name>JSQLParser library</name>
7-
<inceptionYear>2004</inceptionYear>
8-
<organization>
9-
<name>JSQLParser</name>
10-
</organization>
11-
<licenses>
12-
<license>
13-
<name>GNU Library or Lesser General Public License (LGPL) V2.1</name>
14-
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
15-
</license>
16-
</licenses>
17-
<dependencies>
18-
<dependency>
19-
<groupId>junit</groupId>
20-
<artifactId>junit</artifactId>
21-
<version>4.10</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>commons-io</groupId>
25-
<artifactId>commons-io</artifactId>
26-
<version>2.4</version>
27-
<scope>test</scope>
28-
</dependency>
29-
</dependencies>
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.github.jsqlparser</groupId>
4+
<artifactId>jsqlparser</artifactId>
5+
<version>0.8.5-SNAPSHOT</version>
6+
<name>JSQLParser library</name>
7+
<inceptionYear>2004</inceptionYear>
8+
<organization>
9+
<name>JSQLParser</name>
10+
</organization>
11+
<packaging>jar</packaging>
12+
<url>https://github.com/JSQLParser/JSqlParser</url>
13+
14+
<licenses>
15+
<license>
16+
<name>GNU Library or Lesser General Public License (LGPL) V2.1</name>
17+
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
18+
</license>
19+
</licenses>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>junit</groupId>
24+
<artifactId>junit</artifactId>
25+
<version>4.10</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>commons-io</groupId>
29+
<artifactId>commons-io</artifactId>
30+
<version>2.4</version>
31+
<scope>test</scope>
32+
</dependency>
33+
</dependencies>
34+
35+
<developers>
36+
<developer>
37+
<name>Tobias Warneke</name>
38+
<email>[email protected]</email>
39+
</developer>
40+
</developers>
3041

31-
<distributionManagement>
32-
<repository>
33-
<id>wumpz-releases</id>
34-
<url>${wumpz.releases.repo.url}</url>
35-
</repository>
36-
<snapshotRepository>
37-
<id>wumpz-snapshots</id>
38-
<url>${wumpz.snapshots.repo.url}</url>
39-
</snapshotRepository>
40-
</distributionManagement>
42+
<distributionManagement>
43+
<repository>
44+
<id>sonatype-nexus-staging</id>
45+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
46+
</repository>
47+
<snapshotRepository>
48+
<id>sonatype-nexus-snapshots</id>
49+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
50+
</snapshotRepository>
51+
</distributionManagement>
4152

42-
<scm>
43-
<developerConnection>scm:git:ssh://[email protected]:JSQLParser/JSqlParser.git</developerConnection>
44-
<tag>HEAD</tag>
45-
</scm>
53+
<scm>
54+
<connection>scm:git:https://github.com/JSQLParser/JSqlParser.git</connection>
55+
<developerConnection>scm:git:ssh://[email protected]:JSQLParser/JSqlParser.git</developerConnection>
56+
<url>https://github.com/JSQLParser/JSqlParser.git</url>
57+
<tag>HEAD</tag>
58+
</scm>
59+
60+
<issueManagement>
61+
<system>GitHub Issues</system>
62+
<url>https://github.com/JSQLParser/JSqlParser/issues</url>
63+
</issueManagement>
4664

47-
<build>
48-
<plugins>
49-
<plugin>
50-
<artifactId>maven-compiler-plugin</artifactId>
51-
<version>3.0</version>
52-
<configuration>
53-
<source>1.6</source>
54-
<target>1.6</target>
55-
<showWarnings>true</showWarnings>
56-
<encoding>${project.build.sourceEncoding}</encoding>
57-
</configuration>
58-
</plugin>
59-
<plugin>
60-
<groupId>org.codehaus.mojo</groupId>
61-
<artifactId>javacc-maven-plugin</artifactId>
62-
<version>2.6</version>
63-
<executions>
64-
<execution>
65-
<id>javacc</id>
66-
<phase>generate-sources</phase>
67-
<goals>
68-
<goal>javacc</goal>
69-
</goals>
70-
</execution>
71-
</executions>
72-
</plugin>
73-
74-
<plugin>
75-
<groupId>org.apache.maven.plugins</groupId>
76-
<artifactId>maven-eclipse-plugin</artifactId>
77-
<version>2.8</version>
78-
<configuration>
79-
<sourceIncludes>
80-
<sourceInclude>/target/generated-sources/javacc</sourceInclude>
81-
</sourceIncludes>
82-
</configuration>
83-
</plugin>
84-
<plugin>
85-
<groupId>org.apache.maven.plugins</groupId>
86-
<artifactId>maven-resources-plugin</artifactId>
87-
<version>2.4.3</version>
88-
<configuration>
89-
<encoding>${project.build.sourceEncoding}</encoding>
90-
</configuration>
91-
</plugin>
92-
<plugin>
93-
<groupId>org.codehaus.mojo</groupId>
94-
<artifactId>license-maven-plugin</artifactId>
95-
<version>1.4</version>
96-
<configuration>
97-
<verbose>false</verbose>
98-
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
99-
<canUpdateDescription>false</canUpdateDescription>
100-
</configuration>
101-
<executions>
102-
<execution>
103-
<id>first</id>
104-
<goals>
105-
<goal>update-file-header</goal>
106-
</goals>
107-
<phase>process-sources</phase>
108-
<configuration>
109-
<licenseName>lgpl_v2_1</licenseName>
110-
<roots>
111-
<root>src/main/java</root>
112-
</roots>
113-
</configuration>
114-
</execution>
115-
</executions>
116-
</plugin>
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-release-plugin</artifactId>
120-
<version>2.4.1</version>
121-
<configuration>
122-
<localCheckout>true</localCheckout>
123-
<pushChanges>false</pushChanges>
124-
</configuration>
125-
</plugin>
126-
</plugins>
127-
</build>
128-
<properties>
129-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
130-
</properties>
131-
<description>This is a fork of
132-
Project Info: http://jsqlparser.sourceforge.net
133-
Project Lead: Leonardo Francalanci ([email protected]);
65+
<build>
66+
<plugins>
67+
<plugin>
68+
<artifactId>maven-compiler-plugin</artifactId>
69+
<version>3.0</version>
70+
<configuration>
71+
<source>1.6</source>
72+
<target>1.6</target>
73+
<showWarnings>true</showWarnings>
74+
<encoding>${project.build.sourceEncoding}</encoding>
75+
</configuration>
76+
</plugin>
77+
<plugin>
78+
<groupId>org.codehaus.mojo</groupId>
79+
<artifactId>javacc-maven-plugin</artifactId>
80+
<version>2.6</version>
81+
<executions>
82+
<execution>
83+
<id>javacc</id>
84+
<phase>generate-sources</phase>
85+
<goals>
86+
<goal>javacc</goal>
87+
</goals>
88+
</execution>
89+
</executions>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-eclipse-plugin</artifactId>
94+
<version>2.8</version>
95+
<configuration>
96+
<sourceIncludes>
97+
<sourceInclude>/target/generated-sources/javacc</sourceInclude>
98+
</sourceIncludes>
99+
</configuration>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-resources-plugin</artifactId>
104+
<version>2.4.3</version>
105+
<configuration>
106+
<encoding>${project.build.sourceEncoding}</encoding>
107+
</configuration>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.codehaus.mojo</groupId>
111+
<artifactId>license-maven-plugin</artifactId>
112+
<version>1.4</version>
113+
<configuration>
114+
<verbose>false</verbose>
115+
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
116+
<canUpdateDescription>false</canUpdateDescription>
117+
</configuration>
118+
<executions>
119+
<execution>
120+
<id>first</id>
121+
<goals>
122+
<goal>update-file-header</goal>
123+
</goals>
124+
<phase>process-sources</phase>
125+
<configuration>
126+
<licenseName>lgpl_v2_1</licenseName>
127+
<roots>
128+
<root>src/main/java</root>
129+
</roots>
130+
</configuration>
131+
</execution>
132+
</executions>
133+
</plugin>
134+
<plugin>
135+
<groupId>org.apache.maven.plugins</groupId>
136+
<artifactId>maven-release-plugin</artifactId>
137+
<version>2.4.1</version>
138+
<configuration>
139+
<localCheckout>true</localCheckout>
140+
<pushChanges>false</pushChanges>
141+
</configuration>
142+
</plugin>
143+
<plugin>
144+
<groupId>org.apache.maven.plugins</groupId>
145+
<artifactId>maven-source-plugin</artifactId>
146+
<version>2.2.1</version>
147+
<executions>
148+
<execution>
149+
<id>attach-sources</id>
150+
<goals>
151+
<goal>jar</goal>
152+
</goals>
153+
</execution>
154+
</executions>
155+
</plugin>
156+
<plugin>
157+
<groupId>org.apache.maven.plugins</groupId>
158+
<artifactId>maven-javadoc-plugin</artifactId>
159+
<version>2.9</version>
160+
<executions>
161+
<execution>
162+
<id>attach-javadocs</id>
163+
<goals>
164+
<goal>jar</goal>
165+
</goals>
166+
</execution>
167+
</executions>
168+
</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>
183+
</plugins>
184+
</build>
185+
186+
<properties>
187+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
188+
</properties>
189+
190+
<description>This is a fork of
191+
Project Info: http://jsqlparser.sourceforge.net
192+
Project Lead: Leonardo Francalanci ([email protected]);
134193
</description>
135-
<reporting>
136-
<plugins>
137-
<plugin>
138-
<groupId>org.codehaus.mojo</groupId>
139-
<artifactId>javacc-maven-plugin</artifactId>
140-
</plugin>
141-
</plugins>
142-
</reporting>
194+
<reporting>
195+
<plugins>
196+
<plugin>
197+
<groupId>org.codehaus.mojo</groupId>
198+
<artifactId>javacc-maven-plugin</artifactId>
199+
</plugin>
200+
</plugins>
201+
</reporting>
143202
</project>

0 commit comments

Comments
 (0)