Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed Feb 28, 2020
1 parent 24c2e14 commit 20912b4
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 1 deletion.
5 changes: 5 additions & 0 deletions complete/build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mkdir("dist");
var name = "complete";
cp("pom.xml", "dist/" + name + ".pom")

publish("dist")
27 changes: 27 additions & 0 deletions complete/ivy.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0">
<info module="complete" organisation="net.java.linoleum" revision="1.6"/>
<configurations>
<conf name="default" extends="runtime"/>
<conf name="compile"/>
<conf name="runtime"/>
<conf name="compile-test"/>
<conf name="runtime-test"/>
<conf name="pom"/>
</configurations>
<publications>
<artifact name="complete" type="pom" ext="pom" conf="pom"/>
</publications>
<dependencies>
<dependency org="net.java.linoleum" name="console" rev="1.6" conf="runtime->default"/>
<dependency org="net.java.linoleum" name="pdfview" rev="1.6" conf="runtime->default"/>
<dependency org="org.eclipse.jgit" name="org.eclipse.jgit" rev="3.4.0.201406110918-r" conf="runtime->default">
<exclude org="commons-codec" module="commons-codec" name="*" type="*" ext="*" conf="" matcher="exact"/>
</dependency>
<dependency org="commons-io" name="commons-io" rev="1.3.1" conf="runtime->default"/>
<dependency org="com.googlecode.java-diff-utils" name="diffutils" rev="1.3.0" conf="runtime->default"/>
<dependency org="ch.epfl.lamp" name="dotty-compiler_0.22" rev="0.22.0-RC1" conf="runtime->default"/>
<dependency org="com.lihaoyi" name="os-lib_2.13" rev="0.6.3" conf="runtime->default"/>
<dependency org="com.github.rjolly" name="jshellscriptengine" rev="1.0" conf="runtime->default"/>
</dependencies>
</ivy-module>
59 changes: 59 additions & 0 deletions complete/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>net.java.linoleum</groupId>
<artifactId>complete</artifactId>
<packaging>pom</packaging>
<version>1.6</version>
<name>complete</name>
<dependencies>
<dependency>
<groupId>net.java.linoleum</groupId>
<artifactId>console</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>net.java.linoleum</groupId>
<artifactId>pdfview</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>3.4.0.201406110918-r</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>com.googlecode.java-diff-utils</groupId>
<artifactId>diffutils</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>ch.epfl.lamp</groupId>
<artifactId>dotty-compiler_0.22</artifactId>
<version>0.22.0-RC1</version>
</dependency>
<dependency>
<groupId>com.lihaoyi</groupId>
<artifactId>os-lib_2.13</artifactId>
<version>0.6.3</version>
</dependency>
<dependency>
<groupId>com.github.rjolly</groupId>
<artifactId>jshellscriptengine</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ List of applications
Useful libraries

com.googlecode.java-diff-utils#diffutils;1.3.0 The DiffUtils library for computing diffs in Java
commons-io#commons-io;2.4 The Apache Commons IO library
commons-io#commons-io;1.3.1 The Apache Commons IO library
mstor#mstor;0.9.9 A JavaMail provider for persistent email storage
org.bouncycastle#bcpg-jdk15on;1.64 The Bouncy Castle Java API for handling the OpenPGP protocol
org.ghost4j#ghost4j;1.0.1 Ghost4J binds the Ghostscript C API to bring Ghostscript power to the Java world
Expand Down

0 comments on commit 20912b4

Please sign in to comment.