Skip to content

Commit 5dcfc1a

Browse files
committed
Update to use new style of native artifacts.
1 parent a7a0120 commit 5dcfc1a

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

jansi/pom.xml

+5-6
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,20 @@
4747
platforms -->
4848
<dependency>
4949
<groupId>org.fusesource.jansi</groupId>
50-
<artifactId>jansi-native</artifactId>
51-
<classifier>windows32</classifier>
50+
<artifactId>jansi-windows32</artifactId>
5251
<version>${jansi-native-version}</version>
5352
</dependency>
5453
<dependency>
5554
<groupId>org.fusesource.jansi</groupId>
56-
<artifactId>jansi-native</artifactId>
57-
<classifier>windows64</classifier>
55+
<artifactId>jansi-windows64</artifactId>
5856
<version>${jansi-native-version}</version>
5957
</dependency>
6058
<dependency>
6159
<groupId>org.fusesource.jansi</groupId>
62-
<artifactId>jansi-native</artifactId>
63-
<classifier>osx</classifier>
60+
<artifactId>jansi-osx</artifactId>
6461
<version>${jansi-native-version}</version>
6562
</dependency>
63+
<!--
6664
<dependency>
6765
<groupId>org.fusesource.jansi</groupId>
6866
<artifactId>jansi-native</artifactId>
@@ -75,6 +73,7 @@
7573
<classifier>linux64</classifier>
7674
<version>${jansi-native-version}</version>
7775
</dependency>
76+
-->
7877

7978
<dependency>
8079
<groupId>junit</groupId>

pom.xml

+11-7
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<archive>http://groups.google.com/group/${forge-project-id}-commits</archive>
6868
<post>${forge-project-id}[email protected]</post>
6969
<subscribe>${forge-project-id}[email protected]</subscribe>
70-
<unsubscribe>${forge-project-id}-commits[email protected]</unsubscribe>
70+
<unsubscribe>${forge-project-id}-commisots[email protected]</unsubscribe>
7171
</mailingList>
7272
</mailingLists>
7373

@@ -90,7 +90,7 @@
9090
<repository>
9191
<id>sonatype-nexus-staging</id>
9292
<name>Sonatype Staging Repository</name>
93-
<url> https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
93+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
9494
</repository>
9595
<snapshotRepository>
9696
<id>sonatype-nexus-snapshots</id>
@@ -243,18 +243,20 @@
243243
<id>download</id>
244244
<repositories>
245245
<repository>
246-
<id>jansi.release</id>
247-
<url>http://jansi.fusesource.org/repo/release</url>
248-
<snapshots><enabled>false</enabled></snapshots>
246+
<id>sonatype-public</id>
247+
<url>https://oss.sonatype.org/content/groups/public</url>
248+
<snapshots><enabled>true</enabled></snapshots>
249249
<releases><enabled>true</enabled></releases>
250250
</repository>
251251
<repository>
252-
<id>jansi.snapshot</id>
253-
<url>http://jansi.fusesource.org/repo/snapshot</url>
252+
<id>sonatype-staging</id>
253+
<url>https://oss.sonatype.org/content/groups/staging</url>
254254
<snapshots><enabled>false</enabled></snapshots>
255255
<releases><enabled>true</enabled></releases>
256256
</repository>
257257
</repositories>
258+
259+
258260
</profile>
259261

260262
<profile>
@@ -313,6 +315,8 @@
313315

314316
<modules>
315317
<module>jansi</module>
318+
<!--
316319
<module>jansi-website</module>
320+
-->
317321
</modules>
318322
</project>

0 commit comments

Comments
 (0)