|
6 | 6 |
|
7 | 7 | <groupId>com.wavesplatform</groupId> |
8 | 8 | <artifactId>waves-transactions</artifactId> |
9 | | - <version>1.2.5</version> |
| 9 | + <version>1.2.6-SNAPSHOT</version> |
| 10 | + <packaging>jar</packaging> |
10 | 11 |
|
11 | 12 | <properties> |
12 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
43 | 44 | </developer> |
44 | 45 | </developers> |
45 | 46 |
|
46 | | - <profiles> |
47 | | - <!-- Deployment profile (required so these plugins are only used when deploying) --> |
48 | | - <profile> |
49 | | - <id>deploy</id> |
50 | | - <build> |
51 | | - <plugins> |
52 | | - <plugin> |
53 | | - <groupId>org.apache.maven.plugins</groupId> |
54 | | - <artifactId>maven-javadoc-plugin</artifactId> |
55 | | - <version>3.3.0</version> |
56 | | - <configuration> |
57 | | - <source>8</source> |
58 | | - </configuration> |
59 | | - <executions> |
60 | | - <execution> |
61 | | - <id>attach-javadocs</id> |
62 | | - <goals> |
63 | | - <goal>jar</goal> |
64 | | - </goals> |
65 | | - </execution> |
66 | | - </executions> |
67 | | - </plugin> |
68 | | - <plugin> |
69 | | - <groupId>org.apache.maven.plugins</groupId> |
70 | | - <artifactId>maven-gpg-plugin</artifactId> |
71 | | - <version>1.6</version> |
72 | | - <configuration> |
73 | | - <!-- Prevent `gpg` from using pinentry programs --> |
74 | | - <gpgArguments> |
75 | | - <arg>--pinentry-mode</arg> |
76 | | - <arg>loopback</arg> |
77 | | - </gpgArguments> |
78 | | - </configuration> |
79 | | - <executions> |
80 | | - <execution> |
81 | | - <id>sign-artifacts</id> |
82 | | - <phase>verify</phase> |
83 | | - <goals> |
84 | | - <goal>sign</goal> |
85 | | - </goals> |
86 | | - </execution> |
87 | | - </executions> |
88 | | - </plugin> |
89 | | - <plugin> |
90 | | - <groupId>org.sonatype.plugins</groupId> |
91 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
92 | | - <version>1.6.8</version> |
93 | | - <extensions>true</extensions> |
94 | | - <configuration> |
95 | | - <serverId>ossrh</serverId> |
96 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
97 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
98 | | - </configuration> |
99 | | - </plugin> |
100 | | - </plugins> |
101 | | - </build> |
102 | | - </profile> |
103 | | - </profiles> |
104 | | - |
105 | 47 | <build> |
106 | 48 | <plugins> |
| 49 | + <plugin> |
| 50 | + <groupId>org.apache.maven.plugins</groupId> |
| 51 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 52 | + <version>3.6.2</version> |
| 53 | + <executions> |
| 54 | + <execution> |
| 55 | + <id>enforce-maven</id> |
| 56 | + <goals> |
| 57 | + <goal>enforce</goal> |
| 58 | + </goals> |
| 59 | + <configuration> |
| 60 | + <rules> |
| 61 | + <requireMavenVersion> |
| 62 | + <version>3.6.3</version> |
| 63 | + </requireMavenVersion> |
| 64 | + </rules> |
| 65 | + </configuration> |
| 66 | + </execution> |
| 67 | + </executions> |
| 68 | + </plugin> |
| 69 | + <plugin> |
| 70 | + <groupId>org.sonatype.central</groupId> |
| 71 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 72 | + <version>0.9.0</version> |
| 73 | + <extensions>true</extensions> |
| 74 | + <configuration> |
| 75 | + <autoPublish>true</autoPublish> |
| 76 | + <waitUntil>published</waitUntil> |
| 77 | + </configuration> |
| 78 | + </plugin> |
107 | 79 | <plugin> |
108 | 80 | <groupId>org.apache.maven.plugins</groupId> |
109 | 81 | <artifactId>maven-compiler-plugin</artifactId> |
110 | | - <version>3.8.1</version> |
| 82 | + <version>3.14.1</version> |
111 | 83 | <configuration> |
112 | | - <source>8</source> |
113 | | - <target>8</target> |
| 84 | + <source>11</source> |
| 85 | + <target>11</target> |
114 | 86 | </configuration> |
115 | 87 | </plugin> |
116 | 88 | <plugin> |
117 | 89 | <groupId>org.apache.maven.plugins</groupId> |
118 | 90 | <artifactId>maven-source-plugin</artifactId> |
119 | | - <version>3.2.1</version> |
| 91 | + <version>3.3.1</version> |
120 | 92 | <executions> |
121 | 93 | <execution> |
122 | 94 | <id>attach-sources</id> |
|
126 | 98 | </execution> |
127 | 99 | </executions> |
128 | 100 | </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-gpg-plugin</artifactId> |
| 104 | + <version>3.2.8</version> |
| 105 | + <executions> |
| 106 | + <execution> |
| 107 | + <id>sign-artifacts</id> |
| 108 | + <phase>verify</phase> |
| 109 | + <goals> |
| 110 | + <goal>sign</goal> |
| 111 | + </goals> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + </plugin> |
129 | 115 | <plugin> |
130 | 116 | <groupId>org.apache.maven.plugins</groupId> |
131 | 117 | <artifactId>maven-surefire-plugin</artifactId> |
132 | | - <version>2.22.2</version> |
| 118 | + <version>3.5.4</version> |
133 | 119 | </plugin> |
134 | 120 | <plugin> |
135 | 121 | <groupId>org.apache.maven.plugins</groupId> |
136 | 122 | <artifactId>maven-jar-plugin</artifactId> |
137 | | - <version>3.2.0</version> |
| 123 | + <version>3.5.0</version> |
138 | 124 | <configuration> |
139 | 125 | <archive> |
140 | 126 | <manifest> |
|
151 | 137 | </configuration> |
152 | 138 | </plugin> |
153 | 139 | <plugin> |
154 | | - <groupId>org.apache.maven.plugins</groupId> |
155 | | - <artifactId>maven-dependency-plugin</artifactId> |
156 | | - <version>3.3.0</version> |
| 140 | + <groupId>org.apache.maven.plugins</groupId> |
| 141 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 142 | + <version>3.12.0</version> |
| 143 | + <executions> |
| 144 | + <execution> |
| 145 | + <id>attach-javadocs</id> |
| 146 | + <goals> |
| 147 | + <goal>jar</goal> |
| 148 | + </goals> |
| 149 | + <configuration> |
| 150 | + <source>11</source> |
| 151 | + <doclint>none</doclint> |
| 152 | + </configuration> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + <configuration> |
| 156 | + <source>11</source> |
| 157 | + <doclint>none</doclint> |
| 158 | + </configuration> |
157 | 159 | </plugin> |
158 | 160 | </plugins> |
159 | 161 | </build> |
160 | 162 |
|
| 163 | + <repositories> |
| 164 | + <repository> |
| 165 | + <id>central-portal-snapshots</id> |
| 166 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 167 | + <releases> |
| 168 | + <enabled>false</enabled> |
| 169 | + </releases> |
| 170 | + <snapshots> |
| 171 | + <enabled>true</enabled> |
| 172 | + </snapshots> |
| 173 | + </repository> |
| 174 | + </repositories> |
| 175 | + |
161 | 176 | <distributionManagement> |
162 | 177 | <snapshotRepository> |
163 | | - <id>ossrh</id> |
164 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 178 | + <id>central</id> |
| 179 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
165 | 180 | </snapshotRepository> |
166 | | - <repository> |
167 | | - <id>ossrh</id> |
168 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
169 | | - </repository> |
170 | 181 | </distributionManagement> |
171 | 182 |
|
172 | 183 | <dependencies> |
173 | | - <!-- waves --> |
174 | 184 | <dependency> |
175 | 185 | <groupId>com.wavesplatform</groupId> |
176 | 186 | <artifactId>waves-crypto</artifactId> |
177 | | - <version>2.0.5</version> |
| 187 | + <version>2.0.6</version> |
178 | 188 | </dependency> |
179 | 189 | <dependency> |
180 | 190 | <groupId>com.wavesplatform</groupId> |
181 | 191 | <artifactId>protobuf-schemas</artifactId> |
182 | | - <version>1.5.2</version> |
| 192 | + <version>1.6.0</version> |
183 | 193 | </dependency> |
184 | | - |
185 | | - <!-- json --> |
186 | 194 | <dependency> |
187 | 195 | <groupId>com.fasterxml.jackson.core</groupId> |
188 | 196 | <artifactId>jackson-databind</artifactId> |
189 | 197 | <version>2.16.1</version> |
190 | 198 | </dependency> |
191 | | - |
192 | | - <!-- ethereum transaction --> |
193 | 199 | <dependency> |
194 | 200 | <groupId>org.web3j</groupId> |
195 | | - <artifactId>core</artifactId> |
| 201 | + <artifactId>crypto</artifactId> |
196 | 202 | <version>4.9.8</version> |
| 203 | + <exclusions> |
| 204 | + <exclusion> |
| 205 | + <groupId>org.bouncycastle</groupId> |
| 206 | + <artifactId>bcprov-jdk15on</artifactId> |
| 207 | + </exclusion> |
| 208 | + </exclusions> |
197 | 209 | </dependency> |
198 | | - |
199 | | - <!-- testing --> |
200 | 210 | <dependency> |
201 | 211 | <groupId>org.junit.jupiter</groupId> |
202 | 212 | <artifactId>junit-jupiter</artifactId> |
|
0 commit comments