Skip to content

Commit d3556d2

Browse files
committed
Bump maven central publishing publin to 0.8.0
1 parent eb0a09a commit d3556d2

File tree

3 files changed

+102
-100
lines changed

3 files changed

+102
-100
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ target
6969
pom.xml.versionsBackup
7070
pom.xml.releaseBackup
7171
pom.xml.tag
72-
!maven/**/*.zip
72+
!maven/**/*.zip
73+
**/.flattened-pom.xml

maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
<plugin>
410410
<groupId>org.sonatype.central</groupId>
411411
<artifactId>central-publishing-maven-plugin</artifactId>
412-
<version>0.7.0</version>
412+
<version>0.8.0</version>
413413
<extensions>true</extensions>
414414
<configuration>
415415
<publishingServerId>central</publishingServerId>
Lines changed: 99 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,99 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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/maven-v4_0_0.xsd">
3-
<parent>
4-
<artifactId>codenameone</artifactId>
5-
<groupId>com.codenameone</groupId>
6-
<version>8.0-SNAPSHOT</version>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
<artifactId>sqlite-jdbc</artifactId>
10-
<version>8.0-SNAPSHOT</version>
11-
<build>
12-
<plugins>
13-
<plugin>
14-
<artifactId>maven-source-plugin</artifactId>
15-
<version>3.2.1</version>
16-
<executions>
17-
<execution>
18-
<goals>
19-
<goal>jar</goal>
20-
</goals>
21-
</execution>
22-
</executions>
23-
</plugin>
24-
<plugin>
25-
<artifactId>maven-shade-plugin</artifactId>
26-
<version>3.3.0</version>
27-
<executions>
28-
<execution>
29-
<phase>package</phase>
30-
<goals>
31-
<goal>shade</goal>
32-
</goals>
33-
<configuration>
34-
<relocations>
35-
<relocation>
36-
<pattern>org.slf4j</pattern>
37-
<shadedPattern>com.codename1.compat.sqlite.slf4j</shadedPattern>
38-
</relocation>
39-
</relocations>
40-
</configuration>
41-
</execution>
42-
</executions>
43-
</plugin>
44-
<plugin>
45-
<artifactId>maven-dependency-plugin</artifactId>
46-
<version>3.1.2</version>
47-
<executions>
48-
<execution>
49-
<id>copy-javadoc</id>
50-
<phase>package</phase>
51-
<goals>
52-
<goal>copy</goal>
53-
</goals>
54-
<configuration>
55-
<artifactItems>
56-
<artifactItem>
57-
<groupId>org.xerial</groupId>
58-
<artifactId>sqlite-jdbc</artifactId>
59-
<version>${sqlite.jdbc.version}</version>
60-
<classifier>javadoc</classifier>
61-
<destFileName>sqlite-jdbc-javadoc.jar</destFileName>
62-
</artifactItem>
63-
</artifactItems>
64-
<outputDirectory>${project.build.directory}</outputDirectory>
65-
</configuration>
66-
</execution>
67-
</executions>
68-
</plugin>
69-
<plugin>
70-
<artifactId>maven-jar-plugin</artifactId>
71-
<version>3.2.0</version>
72-
<executions>
73-
<execution>
74-
<id>attach-javadoc</id>
75-
<phase>package</phase>
76-
<goals>
77-
<goal>jar</goal>
78-
</goals>
79-
<configuration>
80-
<classifier>javadoc</classifier>
81-
<archive>
82-
<manifest>
83-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
84-
</manifest>
85-
</archive>
86-
<includes>
87-
<include>sqlite-jdbc-javadoc.jar</include>
88-
</includes>
89-
</configuration>
90-
</execution>
91-
</executions>
92-
</plugin>
93-
</plugins>
94-
</build>
95-
<properties>
96-
<sqlite.jdbc.version>3.46.1.0</sqlite.jdbc.version>
97-
</properties>
98-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<parent>
4+
<artifactId>codenameone</artifactId>
5+
<groupId>com.codenameone</groupId>
6+
<version>8.0-SNAPSHOT</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>sqlite-jdbc</artifactId>
10+
<name>sqlite-jdbc</name>
11+
<version>8.0-SNAPSHOT</version>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<artifactId>maven-source-plugin</artifactId>
16+
<version>3.2.1</version>
17+
<executions>
18+
<execution>
19+
<goals>
20+
<goal>jar</goal>
21+
</goals>
22+
</execution>
23+
</executions>
24+
</plugin>
25+
<plugin>
26+
<artifactId>maven-shade-plugin</artifactId>
27+
<version>3.3.0</version>
28+
<executions>
29+
<execution>
30+
<phase>package</phase>
31+
<goals>
32+
<goal>shade</goal>
33+
</goals>
34+
<configuration>
35+
<relocations>
36+
<relocation>
37+
<pattern>org.slf4j</pattern>
38+
<shadedPattern>com.codename1.compat.sqlite.slf4j</shadedPattern>
39+
</relocation>
40+
</relocations>
41+
</configuration>
42+
</execution>
43+
</executions>
44+
</plugin>
45+
<plugin>
46+
<artifactId>maven-dependency-plugin</artifactId>
47+
<version>3.1.2</version>
48+
<executions>
49+
<execution>
50+
<id>copy-javadoc</id>
51+
<phase>package</phase>
52+
<goals>
53+
<goal>copy</goal>
54+
</goals>
55+
<configuration>
56+
<artifactItems>
57+
<artifactItem>
58+
<groupId>org.xerial</groupId>
59+
<artifactId>sqlite-jdbc</artifactId>
60+
<version>${sqlite.jdbc.version}</version>
61+
<classifier>javadoc</classifier>
62+
<destFileName>sqlite-jdbc-javadoc.jar</destFileName>
63+
</artifactItem>
64+
</artifactItems>
65+
<outputDirectory>${project.build.directory}</outputDirectory>
66+
</configuration>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
<plugin>
71+
<artifactId>maven-jar-plugin</artifactId>
72+
<version>3.2.0</version>
73+
<executions>
74+
<execution>
75+
<id>attach-javadoc</id>
76+
<phase>package</phase>
77+
<goals>
78+
<goal>jar</goal>
79+
</goals>
80+
<configuration>
81+
<classifier>javadoc</classifier>
82+
<archive>
83+
<manifest>
84+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
85+
</manifest>
86+
</archive>
87+
<includes>
88+
<include>sqlite-jdbc-javadoc.jar</include>
89+
</includes>
90+
</configuration>
91+
</execution>
92+
</executions>
93+
</plugin>
94+
</plugins>
95+
</build>
96+
<properties>
97+
<sqlite.jdbc.version>3.46.1.0</sqlite.jdbc.version>
98+
</properties>
99+
</project>

0 commit comments

Comments
 (0)