|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | | - |
| 1 | +<?xml version="1.0"?> |
| 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"> |
4 | 3 | <modelVersion>4.0.0</modelVersion> |
5 | 4 | <groupId>org.xerial</groupId> |
6 | 5 | <artifactId>sqlite-jdbc</artifactId> |
7 | | - <version>3.25.3</version> |
| 6 | + <version>3.26.0</version> |
8 | 7 | <name>SQLite JDBC</name> |
9 | 8 | <description>SQLite JDBC library</description> |
10 | | - |
11 | 9 | <parent> |
12 | 10 | <groupId>org.sonatype.oss</groupId> |
13 | 11 | <artifactId>oss-parent</artifactId> |
14 | 12 | <version>9</version> |
15 | 13 | </parent> |
16 | | - |
17 | 14 | <properties> |
18 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 16 | </properties> |
20 | | - |
21 | 17 | <licenses> |
22 | 18 | <license> |
23 | 19 | <name>The Apache Software License, Version 2.0</name> |
24 | 20 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
25 | 21 | <distribution>repo</distribution> |
26 | 22 | </license> |
27 | 23 | </licenses> |
28 | | - |
29 | 24 | <developers> |
30 | 25 | <developer> |
31 | 26 | <id>leo</id> |
|
40 | 35 | <timezone>+9</timezone> |
41 | 36 | </developer> |
42 | 37 | </developers> |
43 | | - |
44 | 38 | <build> |
45 | 39 | <resources> |
46 | 40 | <resource> |
|
62 | 56 | <includes> |
63 | 57 | <include>**/sqlite-jdbc.properties</include> |
64 | 58 | </includes> |
65 | | - </resource> |
| 59 | + </resource> |
66 | 60 | <resource> |
67 | 61 | <directory>${basedir}</directory> |
68 | 62 | <targetPath>META-INF/maven/${project.groupId}/${project.artifactId}</targetPath> |
|
72 | 66 | </includes> |
73 | 67 | </resource> |
74 | 68 | </resources> |
75 | | - |
76 | 69 | <testResources> |
77 | 70 | <testResource> |
78 | 71 | <directory>src/test/java</directory> |
|
84 | 77 | <directory>src/test/resources</directory> |
85 | 78 | </testResource> |
86 | 79 | </testResources> |
87 | | - |
88 | 80 | <plugins> |
89 | 81 | <plugin> |
90 | 82 | <groupId>org.apache.maven.plugins</groupId> |
|
95 | 87 | <target>1.6</target> |
96 | 88 | </configuration> |
97 | 89 | </plugin> |
98 | | - |
99 | 90 | <plugin> |
100 | 91 | <groupId>org.apache.maven.plugins</groupId> |
101 | 92 | <artifactId>maven-surefire-report-plugin</artifactId> |
102 | 93 | <version>2.6</version> |
103 | 94 | </plugin> |
104 | | - |
105 | 95 | <plugin> |
106 | 96 | <artifactId>maven-release-plugin</artifactId> |
107 | 97 | <version>2.1</version> |
|
113 | 103 | < connectionUrl>scm:hg:ssh:// [email protected]/xerial/sqlite-jdbc</ connectionUrl> |
114 | 104 | </configuration> |
115 | 105 | </plugin> |
116 | | - |
117 | 106 | <plugin> |
118 | 107 | <groupId>org.apache.maven.plugins</groupId> |
119 | 108 | <artifactId>maven-javadoc-plugin</artifactId> |
|
122 | 111 | <additionalparam>-Xdoclint:none</additionalparam> |
123 | 112 | </configuration> |
124 | 113 | </plugin> |
125 | | - |
126 | 114 | <plugin> |
127 | 115 | <artifactId>maven-jar-plugin</artifactId> |
128 | 116 | <version>2.3.2</version> |
|
133 | 121 | </archive> |
134 | 122 | </configuration> |
135 | 123 | </plugin> |
136 | | - |
137 | | - |
138 | 124 | <plugin> |
139 | 125 | <groupId>org.apache.felix</groupId> |
140 | 126 | <artifactId>maven-bundle-plugin</artifactId> |
|
148 | 134 | </configuration> |
149 | 135 | </plugin> |
150 | 136 | </plugins> |
151 | | - |
152 | | - |
153 | 137 | <pluginManagement> |
154 | 138 | <plugins> |
155 | 139 | <plugin> |
|
171 | 155 | </plugins> |
172 | 156 | </pluginManagement> |
173 | 157 | </build> |
174 | | - |
175 | 158 | <scm> |
176 | 159 | <connection>scm:git:git://github.com/xerial/sqlite-jdbc.git</connection> |
177 | 160 | < developerConnection>scm:git: [email protected]:xerial/sqlite-jdbc.git</ developerConnection> |
178 | 161 | <url>https://github.com/xerial/sqlite-jdbc</url> |
179 | 162 | </scm> |
180 | | - |
181 | 163 | <profiles> |
182 | 164 | <profile> |
183 | 165 | <id>release-sign-artifacts</id> |
|
207 | 189 | </build> |
208 | 190 | </profile> |
209 | 191 | </profiles> |
210 | | - |
211 | 192 | <dependencies> |
212 | 193 | <dependency> |
213 | 194 | <groupId>junit</groupId> |
|
0 commit comments