|
6 | 6 |
|
7 | 7 | <groupId>com.wavesplatform</groupId> |
8 | 8 | <artifactId>waves-crypto</artifactId> |
9 | | - <version>2.0.5</version> |
| 9 | + <version>2.0.6-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <name>Waves Crypto for Java</name> |
12 | 12 | <description>Tools to work with cryptographic primitives used in the Waves blockchain</description> |
|
46 | 46 | <build> |
47 | 47 | <plugins> |
48 | 48 | <plugin> |
49 | | - <groupId>org.sonatype.plugins</groupId> |
50 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
51 | | - <version>1.6.8</version> |
| 49 | + <groupId>org.apache.maven.plugins</groupId> |
| 50 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 51 | + <version>3.6.1</version> |
| 52 | + <executions> |
| 53 | + <execution> |
| 54 | + <id>enforce-maven</id> |
| 55 | + <goals> |
| 56 | + <goal>enforce</goal> |
| 57 | + </goals> |
| 58 | + <configuration> |
| 59 | + <rules> |
| 60 | + <requireMavenVersion> |
| 61 | + <version>3.6.3</version> |
| 62 | + </requireMavenVersion> |
| 63 | + </rules> |
| 64 | + </configuration> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + <plugin> |
| 69 | + <groupId>org.sonatype.central</groupId> |
| 70 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 71 | + <version>0.9.0</version> |
52 | 72 | <extensions>true</extensions> |
53 | 73 | <configuration> |
54 | | - <serverId>ossrh</serverId> |
55 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
56 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 74 | + <autoPublish>true</autoPublish> |
| 75 | + <waitUntil>published</waitUntil> |
57 | 76 | </configuration> |
58 | 77 | </plugin> |
59 | 78 | <plugin> |
60 | 79 | <groupId>org.apache.maven.plugins</groupId> |
61 | 80 | <artifactId>maven-compiler-plugin</artifactId> |
62 | | - <version>3.8.1</version> |
| 81 | + <version>3.14.1</version> |
63 | 82 | <configuration> |
64 | | - <source>8</source> |
65 | | - <target>8</target> |
| 83 | + <source>11</source> |
| 84 | + <target>11</target> |
66 | 85 | </configuration> |
67 | 86 | </plugin> |
68 | 87 | <plugin> |
69 | 88 | <groupId>org.apache.maven.plugins</groupId> |
70 | 89 | <artifactId>maven-source-plugin</artifactId> |
71 | | - <version>3.1.0</version> |
| 90 | + <version>3.3.1</version> |
72 | 91 | <executions> |
73 | 92 | <execution> |
74 | 93 | <id>attach-sources</id> |
|
81 | 100 | <plugin> |
82 | 101 | <groupId>org.apache.maven.plugins</groupId> |
83 | 102 | <artifactId>maven-gpg-plugin</artifactId> |
84 | | - <version>1.6</version> |
| 103 | + <version>3.2.8</version> |
85 | 104 | <executions> |
86 | 105 | <execution> |
87 | 106 | <id>sign-artifacts</id> |
|
91 | 110 | </goals> |
92 | 111 | </execution> |
93 | 112 | </executions> |
94 | | - <configuration> |
95 | | - <!-- Prevent `gpg` from using pinentry programs --> |
96 | | - <gpgArguments> |
97 | | - <arg>--pinentry-mode</arg> |
98 | | - <arg>loopback</arg> |
99 | | - </gpgArguments> |
100 | | - </configuration> |
101 | 113 | </plugin> |
102 | 114 | <plugin> |
103 | 115 | <groupId>org.apache.maven.plugins</groupId> |
104 | 116 | <artifactId>maven-surefire-plugin</artifactId> |
105 | | - <version>2.22.2</version> |
| 117 | + <version>3.5.4</version> |
106 | 118 | </plugin> |
107 | 119 | <plugin> |
108 | 120 | <groupId>org.apache.maven.plugins</groupId> |
109 | 121 | <artifactId>maven-jar-plugin</artifactId> |
110 | | - <version>3.1.2</version> |
| 122 | + <version>3.4.2</version> |
111 | 123 | <configuration> |
112 | 124 | <archive> |
113 | 125 | <manifest> |
|
126 | 138 | <plugin> |
127 | 139 | <groupId>org.apache.maven.plugins</groupId> |
128 | 140 | <artifactId>maven-javadoc-plugin</artifactId> |
129 | | - <version>3.1.1</version> |
| 141 | + <version>3.12.0</version> |
130 | 142 | <executions> |
131 | 143 | <execution> |
132 | 144 | <id>attach-javadocs</id> |
133 | 145 | <goals> |
134 | 146 | <goal>jar</goal> |
135 | 147 | </goals> |
| 148 | + <configuration> |
| 149 | + <source>11</source> |
| 150 | + <doclint>none</doclint> |
| 151 | + </configuration> |
136 | 152 | </execution> |
137 | 153 | </executions> |
138 | 154 | <configuration> |
139 | | - <source>8</source> |
| 155 | + <source>11</source> |
| 156 | + <doclint>none</doclint> |
140 | 157 | </configuration> |
141 | 158 | </plugin> |
142 | 159 | </plugins> |
143 | 160 | </build> |
144 | 161 |
|
145 | 162 | <distributionManagement> |
146 | 163 | <snapshotRepository> |
147 | | - <id>ossrh</id> |
148 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 164 | + <id>central</id> |
| 165 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
149 | 166 | </snapshotRepository> |
| 167 | + </distributionManagement> |
| 168 | + |
| 169 | + <repositories> |
150 | 170 | <repository> |
151 | | - <id>ossrh</id> |
152 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 171 | + <name>Central Portal Snapshots</name> |
| 172 | + <id>central-portal-snapshots</id> |
| 173 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 174 | + <releases> |
| 175 | + <enabled>false</enabled> |
| 176 | + </releases> |
| 177 | + <snapshots> |
| 178 | + <enabled>true</enabled> |
| 179 | + </snapshots> |
153 | 180 | </repository> |
154 | | - </distributionManagement> |
| 181 | + </repositories> |
155 | 182 |
|
156 | 183 | <dependencies> |
157 | 184 | <!-- crypto --> |
158 | 185 | <dependency> |
159 | 186 | <groupId>org.bouncycastle</groupId> |
160 | 187 | <artifactId>bcpkix-jdk18on</artifactId> |
161 | | - <version>1.77</version> |
| 188 | + <version>1.82</version> |
162 | 189 | </dependency> |
163 | 190 | <dependency> |
164 | 191 | <groupId>org.bouncycastle</groupId> |
165 | 192 | <artifactId>bcprov-jdk18on</artifactId> |
166 | | - <version>1.77</version> |
| 193 | + <version>1.82</version> |
167 | 194 | </dependency> |
168 | 195 | <dependency> |
169 | 196 | <groupId>com.wavesplatform</groupId> |
|
184 | 211 | <version>3.20.2</version> |
185 | 212 | <scope>test</scope> |
186 | 213 | </dependency> |
| 214 | + <dependency> |
| 215 | + <groupId>com.wavesplatform</groupId> |
| 216 | + <artifactId>blst-java</artifactId> |
| 217 | + <version>0.3.15-SNAPSHOT</version> |
| 218 | + </dependency> |
187 | 219 | </dependencies> |
188 | 220 |
|
189 | 221 | </project> |
0 commit comments