|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <groupId>org.jsl.collider</groupId> |
| 5 | + <groupId>org.js-labs</groupId> |
6 | 6 | <artifactId>js-collider</artifactId> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 |
|
9 | 9 | <name>js-collider</name> |
10 | | - <version>0.93</version> |
| 10 | + <version>0.1.0</version> |
| 11 | + <description>Java NIO framework</description> |
11 | 12 | <url>https://github.com/js-labs/js-collider</url> |
12 | | - <description>NIO framework</description> |
| 13 | + |
| 14 | + <licenses> |
| 15 | + <license> |
| 16 | + <name>GNU Affero General Public License</name> |
| 17 | + <url>http://www.gnu.org/licenses/agpl-3.0.txt</url> |
| 18 | + <distribution>repo</distribution> |
| 19 | + <comments>GNU Affero General Public License</comments> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + </developers> |
| 25 | + |
| 26 | + <scm> |
| 27 | + <connection>scm:git:https://github.com/js-labs/js-collider.git</connection> |
| 28 | + <tag>v${project.version}</tag> |
| 29 | + <url>https://github.com/js-labs/js-collider</url> |
| 30 | + </scm> |
13 | 31 |
|
14 | 32 | <properties> |
15 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
26 | 44 |
|
27 | 45 | <build> |
28 | 46 | <plugins> |
29 | | - |
30 | 47 | <plugin> |
31 | 48 | <groupId>org.apache.maven.plugins</groupId> |
32 | 49 | <artifactId>maven-source-plugin</artifactId> |
|
40 | 57 | </execution> |
41 | 58 | </executions> |
42 | 59 | </plugin> |
43 | | - |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.maven.plugins</groupId> |
| 62 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 63 | + <version>2.10.3</version> |
| 64 | + <executions> |
| 65 | + <execution> |
| 66 | + <id>attach-docs</id> |
| 67 | + <goals> |
| 68 | + <goal>jar</goal> |
| 69 | + </goals> |
| 70 | + </execution> |
| 71 | + </executions> |
| 72 | + </plugin> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-deploy-plugin</artifactId> |
| 76 | + <version>2.8.2</version> |
| 77 | + <configuration> |
| 78 | + <altDeploymentRepository>local::default::file://${basedir}/target/repo</altDeploymentRepository> |
| 79 | + </configuration> |
| 80 | + </plugin> |
44 | 81 | </plugins> |
45 | 82 | </build> |
46 | 83 |
|
|
0 commit comments