-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from sbamamoto/master
Changes to JObexFTP - Not tested but seems reasonable.
- Loading branch information
Showing
69 changed files
with
591 additions
and
2,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
target/ | ||
*log | ||
*class | ||
nb* | ||
|
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.lhf.obexftp</groupId> | ||
<artifactId>JObexFtp</artifactId> | ||
<packaging>jar</packaging> | ||
<version>2.5-SNAPSHOT</version> | ||
<name>JObexFtp</name> | ||
<url>http://maven.apache.org</url> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.0.2</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<mainClass>com.lhf.jobexftp.StandAloneApp</mainClass> | ||
<addClasspath>true</addClasspath> | ||
<classpathPrefix>lib/</classpathPrefix> | ||
</manifest> | ||
</archive> | ||
<excludes> | ||
<exclude>doc/**/*</exclude> | ||
<exclude>librxtx/**/*</exclude> | ||
<exclude>bin/**/*</exclude> | ||
<exclude>MANIFEST.MF</exclude> | ||
<exclude>LICENSE</exclude> | ||
<exclude>README</exclude> | ||
<exclude>CHANGELOG</exclude> | ||
</excludes> | ||
|
||
</configuration> | ||
</plugin> | ||
|
||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/jobexftp-dist.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.scream3r</groupId> | ||
<artifactId>jssc</artifactId> | ||
<version>2.8.0</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<assembly> | ||
<id>dist</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.outputDirectory}</directory> | ||
<outputDirectory>/</outputDirectory> | ||
<includes> | ||
<include>${project.build.finalName}.jar</include> | ||
<include>*.jar</include> | ||
<include>bin/**/*</include> | ||
<include>doc/**/*</include> | ||
<include>librxtx/**/*</include> | ||
<include>LICENSE</include> | ||
<include>README</include> | ||
<include>CHANGELOG</include> | ||
</includes> | ||
</fileSet> | ||
|
||
</fileSets> | ||
<files> | ||
<file> | ||
<filtered>false</filtered> | ||
<source>${project.build.directory}/${project.build.finalName}.jar</source> | ||
<outputDirectory>/</outputDirectory> | ||
</file> | ||
</files> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>false</unpack> | ||
<scope>runtime</scope> | ||
<outputDirectory>lib</outputDirectory> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
</dependencySet> | ||
</dependencySets> | ||
|
||
</assembly> |
Oops, something went wrong.