|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>com.lemick</groupId> |
8 | | - <artifactId>hibernate-spring-test-sql-count</artifactId> |
9 | | - <version>1.0.0</version> |
| 7 | + <groupId>com.mickaelb</groupId> |
| 8 | + <artifactId>hibernate-query-asserts</artifactId> |
| 9 | + <version>1.0.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <name>${project.groupId}:${project.artifactId}</name> |
| 12 | + <description>A library that can assert SQL statement count generated by Hibernate in Spring tests</description> |
| 13 | + <url>https://github.com/Lemick/hibernate-query-asserts</url> |
| 14 | + |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>The Apache License, Version 2.0</name> |
| 18 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + </license> |
| 20 | + </licenses> |
| 21 | + |
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <name>Mickaël Beguin</name> |
| 25 | + |
| 26 | + <organizationUrl>https://mickaelb.com</organizationUrl> |
| 27 | + </developer> |
| 28 | + </developers> |
| 29 | + |
| 30 | + <scm> |
| 31 | + <connection>scm:git:git://github.com/lemick/hibernate-query-asserts.git</connection> |
| 32 | + <developerConnection>scm:git:ssh://github.com:lemick/hibernate-query-asserts.git</developerConnection> |
| 33 | + <url>https://github.com/lemick/hibernate-query-asserts/tree/master</url> |
| 34 | + </scm> |
| 35 | + |
| 36 | + <distributionManagement> |
| 37 | + <snapshotRepository> |
| 38 | + <id>ossrh</id> |
| 39 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 40 | + </snapshotRepository> |
| 41 | + <repository> |
| 42 | + <id>ossrh</id> |
| 43 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 44 | + </repository> |
| 45 | + </distributionManagement> |
10 | 46 |
|
11 | 47 | <properties> |
12 | 48 | <maven.compiler.source>11</maven.compiler.source> |
|
52 | 88 |
|
53 | 89 | <build> |
54 | 90 | <plugins> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-source-plugin</artifactId> |
| 94 | + <version>3.2.1</version> |
| 95 | + <executions> |
| 96 | + <execution> |
| 97 | + <id>attach-sources</id> |
| 98 | + <goals> |
| 99 | + <goal>jar-no-fork</goal> |
| 100 | + </goals> |
| 101 | + </execution> |
| 102 | + </executions> |
| 103 | + </plugin> |
| 104 | + <plugin> |
| 105 | + <groupId>org.apache.maven.plugins</groupId> |
| 106 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 107 | + <version>3.3.2</version> |
| 108 | + <executions> |
| 109 | + <execution> |
| 110 | + <id>attach-javadocs</id> |
| 111 | + <goals> |
| 112 | + <goal>jar</goal> |
| 113 | + </goals> |
| 114 | + </execution> |
| 115 | + </executions> |
| 116 | + </plugin> |
55 | 117 | <plugin> |
56 | 118 | <groupId>org.apache.maven.plugins</groupId> |
57 | 119 | <artifactId>maven-surefire-plugin</artifactId> |
58 | 120 | <version>3.0.0-M6</version> |
59 | 121 | </plugin> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-gpg-plugin</artifactId> |
| 125 | + <version>3.0.1</version> |
| 126 | + <executions> |
| 127 | + <execution> |
| 128 | + <id>sign-artifacts</id> |
| 129 | + <phase>verify</phase> |
| 130 | + <goals> |
| 131 | + <goal>sign</goal> |
| 132 | + </goals> |
| 133 | + </execution> |
| 134 | + </executions> |
| 135 | + </plugin> |
| 136 | + <plugin> |
| 137 | + <groupId>org.sonatype.plugins</groupId> |
| 138 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 139 | + <version>1.6.7</version> |
| 140 | + <extensions>true</extensions> |
| 141 | + <configuration> |
| 142 | + <serverId>ossrh</serverId> |
| 143 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 144 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 145 | + </configuration> |
| 146 | + </plugin> |
60 | 147 | </plugins> |
61 | 148 | </build> |
62 | 149 | </project> |
0 commit comments