Skip to content

Commit 009c6a9

Browse files
committed
Polishing.
Reformat pom, replace http urls with HTTPS. See #3309
1 parent 5743888 commit 009c6a9

File tree

1 file changed

+124
-115
lines changed

1 file changed

+124
-115
lines changed

spring-data-jpa-performance/pom.xml

+124-115
Original file line numberDiff line numberDiff line change
@@ -1,120 +1,129 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<parent>
7-
<groupId>org.springframework.data</groupId>
8-
<artifactId>spring-data-jpa-parent</artifactId>
9-
<version>3.4.x-LABS-QUERY-SNAPSHOT</version>
10-
</parent>
11-
12-
<name>Spring Data JPA - Performance</name>
13-
<artifactId>spring-data-jpa-performance</artifactId>
14-
15-
<properties>
16-
<jmh.version>1.37</jmh.version>
17-
</properties>
18-
19-
<dependencies>
20-
21-
<dependency>
22-
<groupId>${project.groupId}</groupId>
23-
<artifactId>spring-data-jpa</artifactId>
24-
<version>${project.version}</version>
25-
</dependency>
26-
27-
<dependency>
28-
<groupId>org.openjdk.jmh</groupId>
29-
<artifactId>jmh-generator-annprocess</artifactId>
30-
<version>${jmh.version}</version>
31-
<scope>provided</scope>
32-
</dependency>
33-
34-
<dependency>
35-
<groupId>jakarta.annotation</groupId>
36-
<artifactId>jakarta.annotation-api</artifactId>
37-
<version>${jakarta-annotation-api}</version>
38-
</dependency>
39-
40-
<dependency>
41-
<groupId>jakarta.persistence</groupId>
42-
<artifactId>jakarta.persistence-api</artifactId>
43-
<version>${jakarta-persistence-api}</version>
44-
<scope>compile</scope>
45-
</dependency>
46-
47-
<dependency>
48-
<groupId>${hibernate.groupId}.orm</groupId>
49-
<artifactId>hibernate-core</artifactId>
50-
<version>${hibernate}</version>
51-
<exclusions>
52-
<exclusion>
53-
<groupId>net.bytebuddy</groupId>
54-
<artifactId>byte-buddy</artifactId>
55-
</exclusion>
56-
</exclusions>
57-
<scope>compile</scope>
58-
</dependency>
59-
60-
<dependency>
61-
<groupId>${hibernate.groupId}.orm</groupId>
62-
<artifactId>hibernate-jpamodelgen</artifactId>
63-
<version>${hibernate}</version>
64-
<scope>provided</scope>
65-
</dependency>
66-
67-
<dependency>
68-
<groupId>jakarta.xml.bind</groupId>
69-
<artifactId>jakarta.xml.bind-api</artifactId>
70-
<version>${jaxb}</version>
71-
<scope>provided</scope>
72-
</dependency>
73-
74-
<dependency>
75-
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
76-
<artifactId>microbenchmark-runner-junit5</artifactId>
77-
<version>0.4.0.RELEASE</version>
78-
<scope>test</scope>
79-
</dependency>
80-
81-
<dependency>
82-
<groupId>com.h2database</groupId>
83-
<artifactId>h2</artifactId>
84-
<version>${h2}</version>
85-
<scope>test</scope>
86-
</dependency>
87-
88-
<dependency>
89-
<groupId>com.github.jsqlparser</groupId>
90-
<artifactId>jsqlparser</artifactId>
91-
<version>${jsqlparser}</version>
92-
<scope>test</scope>
93-
</dependency>
94-
95-
</dependencies>
96-
97-
<build>
98-
<plugins>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-jar-plugin</artifactId>
102-
<configuration>
103-
<archive>
104-
<manifestEntries>
105-
<Automatic-Module-Name>org.springframework.data.jpa.performance.tests</Automatic-Module-Name>
106-
</manifestEntries>
107-
</archive>
108-
</configuration>
109-
</plugin>
110-
</plugins>
111-
</build>
112-
113-
<repositories>
114-
<repository>
115-
<id>jitpack.io</id>
116-
<url>https://jitpack.io</url>
117-
</repository>
118-
</repositories>
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<artifactId>spring-data-jpa-performance</artifactId>
9+
10+
<packaging>pom</packaging>
11+
12+
<name>Spring Data JPA - Performance</name>
13+
<description>Benchmark build for Spring Data JPA</description>
14+
15+
<parent>
16+
<groupId>org.springframework.data</groupId>
17+
<artifactId>spring-data-jpa-parent</artifactId>
18+
<version>3.4.0-SNAPSHOT</version>
19+
<relativePath>../pom.xml</relativePath>
20+
</parent>
21+
22+
<properties>
23+
<jmh.version>1.37</jmh.version>
24+
</properties>
25+
26+
<dependencies>
27+
28+
<dependency>
29+
<groupId>${project.groupId}</groupId>
30+
<artifactId>spring-data-jpa</artifactId>
31+
<version>${project.version}</version>
32+
</dependency>
33+
34+
<dependency>
35+
<groupId>org.openjdk.jmh</groupId>
36+
<artifactId>jmh-generator-annprocess</artifactId>
37+
<version>${jmh.version}</version>
38+
<scope>provided</scope>
39+
</dependency>
40+
41+
<dependency>
42+
<groupId>jakarta.annotation</groupId>
43+
<artifactId>jakarta.annotation-api</artifactId>
44+
<version>${jakarta-annotation-api}</version>
45+
</dependency>
46+
47+
<dependency>
48+
<groupId>jakarta.persistence</groupId>
49+
<artifactId>jakarta.persistence-api</artifactId>
50+
<version>${jakarta-persistence-api}</version>
51+
<scope>compile</scope>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>${hibernate.groupId}.orm</groupId>
56+
<artifactId>hibernate-core</artifactId>
57+
<version>${hibernate}</version>
58+
<exclusions>
59+
<exclusion>
60+
<groupId>net.bytebuddy</groupId>
61+
<artifactId>byte-buddy</artifactId>
62+
</exclusion>
63+
</exclusions>
64+
<scope>compile</scope>
65+
</dependency>
66+
67+
<dependency>
68+
<groupId>${hibernate.groupId}.orm</groupId>
69+
<artifactId>hibernate-jpamodelgen</artifactId>
70+
<version>${hibernate}</version>
71+
<scope>provided</scope>
72+
</dependency>
73+
74+
<dependency>
75+
<groupId>jakarta.xml.bind</groupId>
76+
<artifactId>jakarta.xml.bind-api</artifactId>
77+
<version>${jaxb}</version>
78+
<scope>provided</scope>
79+
</dependency>
80+
81+
<dependency>
82+
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
83+
<artifactId>microbenchmark-runner-junit5</artifactId>
84+
<version>0.4.0.RELEASE</version>
85+
<scope>test</scope>
86+
</dependency>
87+
88+
<dependency>
89+
<groupId>com.h2database</groupId>
90+
<artifactId>h2</artifactId>
91+
<version>${h2}</version>
92+
<scope>test</scope>
93+
</dependency>
94+
95+
<dependency>
96+
<groupId>com.github.jsqlparser</groupId>
97+
<artifactId>jsqlparser</artifactId>
98+
<version>${jsqlparser}</version>
99+
<scope>test</scope>
100+
</dependency>
101+
102+
</dependencies>
103+
104+
<build>
105+
<plugins>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-jar-plugin</artifactId>
109+
<configuration>
110+
<archive>
111+
<manifestEntries>
112+
<Automatic-Module-Name>
113+
org.springframework.data.jpa.performance.tests
114+
</Automatic-Module-Name>
115+
</manifestEntries>
116+
</archive>
117+
</configuration>
118+
</plugin>
119+
</plugins>
120+
</build>
121+
122+
<repositories>
123+
<repository>
124+
<id>jitpack.io</id>
125+
<url>https://jitpack.io</url>
126+
</repository>
127+
</repositories>
119128

120129
</project>

0 commit comments

Comments
 (0)