|
4 | 4 | <groupId>com.upokecenter</groupId> |
5 | 5 | <artifactId>cbor</artifactId> |
6 | 6 | <packaging>jar</packaging> |
7 | | - <version>4.1.0-SNAPSHOT</version> |
| 7 | + <version>4.2.0-a0-SNAPSHOT</version> |
8 | 8 | <name>CBOR (Concise Binary Object Representation)</name> |
9 | | - <description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049. </description> |
| 9 | + <description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.</description> |
10 | 10 | <url>https://github.com/peteroupc/CBOR-Java</url> |
| 11 | + <profiles> |
| 12 | + <profile> |
| 13 | + <id>release</id> |
| 14 | + <build> |
| 15 | + <plugins> |
| 16 | + <plugin> |
| 17 | + <groupId>org.apache.maven.plugins</groupId> |
| 18 | + <artifactId>maven-gpg-plugin</artifactId> |
| 19 | + <version>1.5</version> |
| 20 | + <executions> |
| 21 | + <execution> |
| 22 | + <id>sign-artifacts</id> |
| 23 | + <phase>verify</phase> |
| 24 | + <goals> |
| 25 | + <goal>sign</goal> |
| 26 | + </goals> |
| 27 | + </execution> |
| 28 | + </executions> |
| 29 | + </plugin> |
| 30 | + <plugin> |
| 31 | + <groupId>org.apache.maven.plugins</groupId> |
| 32 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 33 | + <version>3.0.1</version> |
| 34 | + <configuration> |
| 35 | + <bottom>CBOR for Java documentation, generated in {currentYear}.</bottom> |
| 36 | + <additionalJOptions> |
| 37 | + <additionalJOption>-html5</additionalJOption> |
| 38 | + </additionalJOptions> |
| 39 | + |
| 40 | + </configuration> |
| 41 | + <executions> |
| 42 | + <execution> |
| 43 | + <id>attach-javadocs</id> |
| 44 | + <goals> |
| 45 | + <goal>jar</goal> |
| 46 | + </goals> |
| 47 | + </execution> |
| 48 | + </executions> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-source-plugin</artifactId> |
| 53 | + <version>2.2.1</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <id>attach-sources</id> |
| 57 | + <goals> |
| 58 | + <goal>jar-no-fork</goal> |
| 59 | + </goals> |
| 60 | + </execution> |
| 61 | + </executions> |
| 62 | + </plugin> |
| 63 | + </plugins> |
| 64 | + </build> |
| 65 | + </profile> |
| 66 | + </profiles> |
11 | 67 | <scm> |
12 | 68 | <connection>scm:git:https://github.com/peteroupc/CBOR-Java</connection> |
13 | 69 | <developerConnection>scm:git:https://github.com/peteroupc/CBOR-Java.git</developerConnection> |
|
26 | 82 | </developers> |
27 | 83 | <properties> |
28 | 84 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
29 | | - <maven.compiler.source>8</maven.compiler.source> |
30 | | - <maven.compiler.target>1.8</maven.compiler.target> |
| 85 | + <maven.compiler.source>6</maven.compiler.source> |
| 86 | + <maven.compiler.target>1.6</maven.compiler.target> |
31 | 87 | </properties> |
32 | 88 | <licenses> |
33 | 89 | <license> |
|
44 | 100 | <version>3.7.0</version> |
45 | 101 | <configuration> |
46 | 102 | <compilerArgs> |
47 | | - <arg>-Xlint:deprecation</arg> |
| 103 | + <arg>-Xlint:all</arg> |
48 | 104 | </compilerArgs> |
49 | 105 | </configuration> |
50 | 106 | </plugin> |
51 | | - <plugin> |
52 | | - <groupId>edu.berkeley.cs.jqf</groupId> |
53 | | - <artifactId>jqf-maven-plugin</artifactId> |
54 | | - <version>1.4</version> |
55 | | - </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.sonatype.plugins</groupId> |
| 109 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 110 | + <extensions>true</extensions> |
| 111 | + <version>1.6.1</version> |
| 112 | + <configuration> |
| 113 | + <serverId>ossrh</serverId> |
| 114 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 115 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 116 | + </configuration> |
| 117 | + </plugin> |
56 | 118 | </plugins> |
57 | 119 | </build> |
58 | 120 | <distributionManagement> |
|
62 | 124 | </snapshotRepository> |
63 | 125 | </distributionManagement> |
64 | 126 | <dependencies> |
65 | | - <dependency> |
66 | | - <groupId>edu.berkeley.cs.jqf</groupId> |
67 | | - <artifactId>jqf-fuzz</artifactId> |
68 | | - <version>1.4</version> |
69 | | - </dependency> |
70 | | - <dependency> |
71 | | - <groupId>com.alibaba</groupId> |
72 | | - <artifactId>fastjson</artifactId> |
73 | | - <version>1.2.68</version> |
74 | | - </dependency> |
75 | 127 | <dependency> |
76 | 128 | <groupId>junit</groupId> |
77 | 129 | <artifactId>junit</artifactId> |
|
0 commit comments