Updated version and INSTALL details
This commit is contained in:
parent
0beac32ab4
commit
3f65dcbe09
14
INSTALL
14
INSTALL
|
@ -123,29 +123,29 @@ Maven:
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fazecast</groupId>
|
<groupId>com.fazecast</groupId>
|
||||||
<artifactId>jSerialComm</artifactId>
|
<artifactId>jSerialComm</artifactId>
|
||||||
<version>[1.0.0,2.0.0)</version>
|
<version>[2.0.0,3.0.0)</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
Ivy:
|
Ivy:
|
||||||
|
|
||||||
<dependency org="com.fazecast" name="jSerialComm" rev="[1.0.0,2.0.0)"/>
|
<dependency org="com.fazecast" name="jSerialComm" rev="[2.0.0,3.0.0)"/>
|
||||||
|
|
||||||
Groovy:
|
Groovy:
|
||||||
|
|
||||||
@Grab(group='com.fazecast', module='jSerialComm', version='[1.0.0,2.0.0)')
|
@Grab(group='com.fazecast', module='jSerialComm', version='[2.0.0,3.0.0)')
|
||||||
|
|
||||||
Gradle:
|
Gradle:
|
||||||
|
|
||||||
compile 'com.fazecast:jSerialComm:[1.0.0,2.0.0)'
|
compile 'com.fazecast:jSerialComm:[2.0.0,3.0.0)'
|
||||||
|
|
||||||
Buildr:
|
Buildr:
|
||||||
|
|
||||||
compile.with 'com.fazecast:jSerialComm:jar:[1.0.0,2.0.0)'
|
compile.with 'com.fazecast:jSerialComm:jar:[2.0.0,3.0.0)'
|
||||||
|
|
||||||
Scala/SBT:
|
Scala/SBT:
|
||||||
|
|
||||||
libraryDependencies += "com.fazecast" % "jSerialComm" % "[1.0.0,2.0.0)"
|
libraryDependencies += "com.fazecast" % "jSerialComm" % "[2.0.0,3.0.0)"
|
||||||
|
|
||||||
Leiningen:
|
Leiningen:
|
||||||
|
|
||||||
[com.fazecast/jSerialComm "[1.0.0,2.0.0)"]
|
[com.fazecast/jSerialComm "[2.0.0,3.0.0)"]
|
||||||
|
|
|
@ -5,11 +5,11 @@ apply plugin: 'osgi'
|
||||||
|
|
||||||
group = 'com.fazecast'
|
group = 'com.fazecast'
|
||||||
archivesBaseName = 'jSerialComm'
|
archivesBaseName = 'jSerialComm'
|
||||||
version = '1.4.0'
|
version = '2.0.0'
|
||||||
|
|
||||||
sourceCompatibility = 1.6
|
sourceCompatibility = 1.6
|
||||||
targetCompatibility = 1.6
|
targetCompatibility = 1.6
|
||||||
javadoc.options.links("http://docs.oracle.com/javase/7/docs/api/")
|
javadoc.options.links("http://docs.oracle.com/javase/8/docs/api/")
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
manifest {
|
manifest {
|
||||||
|
|
Loading…
Reference in New Issue