|
5 | 5 | <artifactId>dirmi</artifactId> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <name>Dirmi</name> |
8 | | - <version>1.1</version> |
| 8 | + <version>1.1.4</version> |
9 | 9 | <description> |
10 | 10 | Bidirectional remote method invocation. |
11 | 11 | </description> |
12 | | - <!-- <url>http://dirmi.net/</url> --> |
| 12 | + <url>https://github.com/cojen/Dirmi/wiki</url> |
13 | 13 | <inceptionYear>2006</inceptionYear> |
14 | 14 |
|
15 | 15 | <organization> |
|
24 | 24 | </license> |
25 | 25 | </licenses> |
26 | 26 |
|
| 27 | + <scm> |
| 28 | + <connection>scm:git:git@github.com:cojen/Cojen.git</connection> |
| 29 | + <developerConnection>scm:git:git@github.com:cojen/Cojen.git</developerConnection> |
| 30 | + <url>git@github.com:cojen/Cojen.git</url> |
| 31 | + </scm> |
| 32 | + |
| 33 | + <developers> |
| 34 | + <developer> |
| 35 | + <name>Brian S O'Neill</name> |
| 36 | + <id>broneill</id> |
| 37 | + <email>broneill@users.sourceforge.net</email> |
| 38 | + <organization>Amazon Technologies, Inc.</organization> |
| 39 | + </developer> |
| 40 | + </developers> |
| 41 | + |
27 | 42 | <dependencies> |
28 | 43 | <dependency> |
29 | 44 | <groupId>org.cojen</groupId> |
30 | 45 | <artifactId>cojen</artifactId> |
31 | | - <version>2.2</version> |
| 46 | + <version>[2.2,)</version> |
32 | 47 | </dependency> |
33 | 48 |
|
34 | 49 | <dependency> |
|
66 | 81 | </configuration> |
67 | 82 | </plugin> |
68 | 83 |
|
69 | | - <!-- |
70 | | - <plugin> |
71 | | - <groupId>org.apache.maven.plugins</groupId> |
72 | | - <artifactId>maven-jar-plugin</artifactId> |
73 | | - <configuration> |
74 | | - <archive> |
75 | | - <manifestEntries> |
76 | | - <Premain-Class>org.cojen.dirmi.trace.TraceAgent</Premain-Class> |
77 | | - </manifestEntries> |
78 | | - </archive> |
79 | | - </configuration> |
80 | | - </plugin> |
81 | | - --> |
82 | | - |
83 | 84 | </plugins> |
84 | 85 | </build> |
85 | 86 |
|
86 | | - <!-- |
87 | | - <reporting> |
88 | | - <plugins> |
89 | | - <plugin> |
90 | | - <groupId>org.apache.maven.plugins</groupId> |
91 | | - <artifactId>maven-site-plugin</artifactId> |
92 | | - <configuration> |
93 | | - <outputEncoding>UTF-8</outputEncoding> |
94 | | - </configuration> |
95 | | - </plugin> |
| 87 | + <profiles> |
| 88 | + <profile> |
| 89 | + <id>release</id> |
| 90 | + <build> |
| 91 | + <plugins> |
96 | 92 |
|
97 | | - <plugin> |
98 | | - <groupId>org.apache.maven.plugins</groupId> |
99 | | - <artifactId>maven-jxr-plugin</artifactId> |
100 | | - <configuration> |
101 | | - <aggregate>true</aggregate> |
102 | | - </configuration> |
103 | | - </plugin> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-source-plugin</artifactId> |
| 96 | + <version>2.2.1</version> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>attach-sources</id> |
| 100 | + <goals> |
| 101 | + <goal>jar-no-fork</goal> |
| 102 | + </goals> |
| 103 | + </execution> |
| 104 | + </executions> |
| 105 | + </plugin> |
104 | 106 |
|
105 | | - <plugin> |
106 | | - <groupId>org.apache.maven.plugins</groupId> |
107 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
108 | | - <reportSets> |
109 | | - <reportSet> |
110 | | - <reports> |
111 | | - <report>license</report> |
112 | | - </reports> |
113 | | - </reportSet> |
114 | | - </reportSets> |
115 | | - </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 110 | + <version>2.9.1</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <id>attach-javadocs</id> |
| 114 | + <goals> |
| 115 | + <goal>jar</goal> |
| 116 | + </goals> |
| 117 | + </execution> |
| 118 | + </executions> |
| 119 | + </plugin> |
116 | 120 |
|
117 | | - <plugin> |
118 | | - <groupId>org.codehaus.mojo</groupId> |
119 | | - <artifactId>cobertura-maven-plugin</artifactId> |
120 | | - </plugin> |
121 | | - </plugins> |
122 | | - </reporting> |
123 | | - --> |
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-gpg-plugin</artifactId> |
| 124 | + <version>1.5</version> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>sign-artifacts</id> |
| 128 | + <phase>verify</phase> |
| 129 | + <goals> |
| 130 | + <goal>sign</goal> |
| 131 | + </goals> |
| 132 | + <configuration> |
| 133 | + <keyname>502A7802</keyname> |
| 134 | + </configuration> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + <plugin> |
| 140 | + <groupId>org.sonatype.plugins</groupId> |
| 141 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 142 | + <version>1.6.3</version> |
| 143 | + <extensions>true</extensions> |
| 144 | + <configuration> |
| 145 | + <serverId>ossrh</serverId> |
| 146 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 147 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 148 | + </configuration> |
| 149 | + </plugin> |
124 | 150 |
|
| 151 | + </plugins> |
| 152 | + </build> |
| 153 | + </profile> |
| 154 | + </profiles> |
125 | 155 | </project> |
0 commit comments