|
2 | 2 | <!-- |
3 | 3 |
|
4 | 4 |
|
5 | | - Copyright (c) 2006-2015, Speedment, Inc. All Rights Reserved. |
| 5 | + Copyright (c) 2006-2016, Speedment, Inc. All Rights Reserved. |
6 | 6 |
|
7 | 7 | Licensed under the Apache License, Version 2.0 (the "License"); You may not |
8 | 8 | use this file except in compliance with the License. You may obtain a copy of |
|
20 | 20 | <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/xsd/maven-4.0.0.xsd"> |
21 | 21 | <modelVersion>4.0.0</modelVersion> |
22 | 22 | <groupId>com.github.pyknic</groupId> |
23 | | - <artifactId>CodeGen</artifactId> |
24 | | - <version>1.1</version> |
| 23 | + <artifactId>codegen</artifactId> |
| 24 | + <version>1.1.0</version> |
25 | 25 | <packaging>jar</packaging> |
26 | 26 |
|
27 | 27 | <name>CodeGen</name> |
|
63 | 63 | <id>ossrh</id> |
64 | 64 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
65 | 65 | </snapshotRepository> |
| 66 | + <repository> |
| 67 | + <id>ossrh</id> |
| 68 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 69 | + </repository> |
66 | 70 | </distributionManagement> |
67 | 71 |
|
68 | 72 | <build> |
|
82 | 86 |
|
83 | 87 | <profiles> |
84 | 88 | <profile> |
85 | | - <id>release</id> |
| 89 | + <id>ossrh</id> |
86 | 90 | <build> |
87 | 91 | <plugins> |
88 | 92 | <plugin> |
|
92 | 96 | <configuration> |
93 | 97 | <header>license_header.txt</header> |
94 | 98 | <properties> |
95 | | - <currentYear>$(current.year}</currentYear> |
| 99 | + <currentYear>2016</currentYear> |
96 | 100 | </properties> |
97 | 101 | <excludes> |
98 | 102 | <exclude>**/README</exclude> |
| 103 | + <exclude>**/LICENSE</exclude> |
99 | 104 | <exclude>src/test/resources/**</exclude> |
100 | 105 | <exclude>src/main/resources/**</exclude> |
101 | 106 | </excludes> |
|
134 | 139 | </execution> |
135 | 140 | </executions> |
136 | 141 | <configuration> |
137 | | - <docfilessubdirs>true</docfilessubdirs> |
138 | | - <excludePackageNames>com.speedment.internal.*</excludePackageNames> |
139 | | - </configuration> |
| 142 | + <docfilessubdirs>true</docfilessubdirs> |
| 143 | + <excludePackageNames>com.speedment.internal.*</excludePackageNames> |
| 144 | + </configuration> |
140 | 145 | </plugin> |
141 | 146 | <plugin> |
142 | 147 | <groupId>org.apache.maven.plugins</groupId> |
|
152 | 157 | </execution> |
153 | 158 | </executions> |
154 | 159 | <configuration> |
| 160 | + <useagent>true</useagent> |
| 161 | + <!--<defaultKeyring>false</defaultKeyring>--> |
155 | 162 |
|
156 | | - </configuration> |
157 | | - </plugin> |
158 | | - <plugin> |
159 | | - <groupId>org.sonatype.plugins</groupId> |
160 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
161 | | - <version>1.6.7</version> |
162 | | - <extensions>true</extensions> |
163 | | - <configuration> |
164 | | - <serverId>ossrh</serverId> |
165 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
166 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 163 | + <keyname>${gpg.keyname}</keyname> |
| 164 | + <passphrase>${gpg.passphrase}</passphrase> |
| 165 | + <!--<passphraseServerId>ossrh</passphraseServerId>--> |
| 166 | + |
| 167 | + <executable>${gpg.executable}</executable> |
| 168 | +<!-- <publicKeyring>${gpg.homedir}/pubring.gpg</publicKeyring> |
| 169 | + <secretKeyring>${gpg.homedir}/secring.gpg</secretKeyring>--> |
167 | 170 | </configuration> |
168 | 171 | </plugin> |
169 | 172 | </plugins> |
|
0 commit comments