|
6 | 6 |
|
7 | 7 | <groupId>com.github.collinalpert</groupId> |
8 | 8 | <artifactId>lambda2sql</artifactId> |
9 | | - <version>1.6.4</version> |
| 9 | + <version>1.6.5</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>lambda2sql</name> |
|
37 | 37 | <url>http://github.com/CollinAlpert/lambda2sql/tree/master</url> |
38 | 38 | </scm> |
39 | 39 |
|
| 40 | + <distributionManagement> |
| 41 | + <snapshotRepository> |
| 42 | + <id>ossrh</id> |
| 43 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 44 | + </snapshotRepository> |
| 45 | + <repository> |
| 46 | + <id>ossrh</id> |
| 47 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 48 | + </repository> |
| 49 | + </distributionManagement> |
| 50 | + |
40 | 51 | <properties> |
41 | | - <jdk.version>11</jdk.version> |
42 | | - <maven.compiler.source>11</maven.compiler.source> |
43 | | - <maven.compiler.target>11</maven.compiler.target> |
| 52 | + <jdk.version>10</jdk.version> |
| 53 | + <maven.compiler.source>10</maven.compiler.source> |
| 54 | + <maven.compiler.target>10</maven.compiler.target> |
44 | 55 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
45 | 56 | </properties> |
46 | 57 |
|
|
62 | 73 |
|
63 | 74 | <build> |
64 | 75 | <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.sonatype.plugins</groupId> |
| 78 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 79 | + <version>1.6.8</version> |
| 80 | + <extensions>true</extensions> |
| 81 | + <configuration> |
| 82 | + <serverId>ossrh</serverId> |
| 83 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 84 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 85 | + </configuration> |
| 86 | + </plugin> |
| 87 | + |
65 | 88 | <plugin> |
66 | 89 | <groupId>org.apache.maven.plugins</groupId> |
67 | 90 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments