Skip to content

Commit

Permalink
Provide FreeBSD native support by default, fixes #56
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Apr 26, 2017
1 parent e73f297 commit 3c82c33
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
14 changes: 12 additions & 2 deletions jansi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>org.fusesource.hawtjni</groupId>
<artifactId>hawtjni-runtime</artifactId>
<version>1.9</version>
<version>1.15-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -69,7 +69,17 @@
<artifactId>jansi-linux64</artifactId>
<version>${jansi-native-version}</version>
</dependency>

<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi-freebsd32</artifactId>
<version>${jansi-native-version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi-freebsd64</artifactId>
<version>${jansi-native-version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<forge-project-id-uc>JANSI</forge-project-id-uc>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jansi-native-version>1.6</jansi-native-version>
<jansi-native-version>1.7-SNAPSHOT</jansi-native-version>
<scalate-version>1.5.1</scalate-version>
<scalamd-version>1.5</scalamd-version>
<slf4j-version>1.6.1</slf4j-version>
Expand Down Expand Up @@ -97,6 +97,17 @@
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<developers>
<developer>
Expand Down Expand Up @@ -129,8 +140,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 3c82c33

Please sign in to comment.