This is an automated email from the git hooks/post-receive script. pini pushed a commit to tag upstream/1.1.0_beta1 in repository sikuli.
commit 5a525b937469203ac4c7a9e95e9d6e0e7ad02f29 Author: Raimund Hocke <[email protected]> Date: Wed Apr 2 12:47:51 2014 +0200 added beanshell support package and doc-ed the other helper packages --- Basics/pom.xml | 172 ++++++++++++++++++++++++++++++--------------------------- 1 file changed, 92 insertions(+), 80 deletions(-) diff --git a/Basics/pom.xml b/Basics/pom.xml index 120ba13..e033804 100755 --- a/Basics/pom.xml +++ b/Basics/pom.xml @@ -1,87 +1,99 @@ <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"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <!-- - * Copyright 2010-2013, Sikuli.org - * Released under the MIT License. - * - * RaiMan 2013 - --> + <!-- + * Copyright 2010-2014, Sikuli.org, sikulix.com + * Released under the MIT License. + * + * RaiMan 2014 + --> - <parent> - <groupId>org.sikuli</groupId> - <artifactId>SikuliX-Project</artifactId> - <version>1.1.0</version> - <relativePath>../</relativePath> - </parent> + <parent> + <groupId>org.sikuli</groupId> + <artifactId>SikuliX-Project</artifactId> + <version>1.1.0</version> + <relativePath>../</relativePath> + </parent> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <groupId>org.sikuli</groupId> - <artifactId>SikuliX-Basics</artifactId> - <version>1.1.0</version> - - <dependencies> - <dependency> - <groupId>commons-cli</groupId> - <artifactId>commons-cli</artifactId> - <version>1.2</version> - </dependency> - <dependency> - <groupId>com.melloware</groupId> - <artifactId>jintellitype</artifactId> - <version>1.3.7</version> - </dependency> - <dependency> - <groupId>jxgrabkey</groupId> - <artifactId>jxgrabkey</artifactId> - <version>1.0</version> - </dependency> - <dependency> - <groupId>org.swinglabs</groupId> - <artifactId>swing-layout</artifactId> - <version>1.0.3</version> - </dependency> - <dependency> - <groupId>com.nativelibs4java</groupId> - <artifactId>bridj</artifactId> - <version>0.6.2</version> - <exclusions> - <!-- exclude this artifact - it includes old junit, which causes problems in classpath --> - <exclusion> - <groupId>com.google.android.tools</groupId> - <artifactId>dx</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.javassist</groupId> - <artifactId>javassist</artifactId> - <version>3.18.1-GA</version> - </dependency> - </dependencies> + <groupId>org.sikuli</groupId> + <artifactId>SikuliX-Basics</artifactId> + <version>1.1.0</version> - <build> - <plugins> - <plugin> - <artifactId>maven-jar-plugin</artifactId> - <version>2.4</version> - <configuration> - <archive> - <manifest> - <mainClass>org.sikuli.basics.RunSetup</mainClass> - </manifest> - </archive> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.2.1</version> - <configuration> - <mainClass>org.sikuli.basics.RunSetup</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <dependencies> + <dependency> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + <version>1.2</version> + </dependency> + <dependency> + <groupId>com.melloware</groupId> + <artifactId>jintellitype</artifactId> + <version>1.3.7</version> + </dependency> + <dependency> + <groupId>jxgrabkey</groupId> + <artifactId>jxgrabkey</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>org.swinglabs</groupId> + <artifactId>swing-layout</artifactId> + <version>1.0.3</version> + </dependency> + <dependency> + <!-- BridJ aims to be the ultimate Java / native interoperability library + Call C, C++, ObjectiveC libraries without compiling native code + https://code.google.com/p/bridj/ --> + <groupId>com.nativelibs4java</groupId> + <artifactId>bridj</artifactId> + <version>0.6.2</version> + <exclusions> + <!-- exclude this artifact - it includes old junit, which causes problems in classpath --> + <exclusion> + <groupId>com.google.android.tools</groupId> + <artifactId>dx</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <!-- Javassist (Java Programming Assistant) makes Java bytecode manipulation simple. + http://www.csg.ci.i.u-tokyo.ac.jp/~chiba/javassist/ --> + <groupId>org.javassist</groupId> + <artifactId>javassist</artifactId> + <version>3.18.1-GA</version> + </dependency> + <dependency> + <!-- BeanShell Scripting Language + http://www.beanshell.org/home.html --> + <groupId>org.beanshell</groupId> + <artifactId>bsh</artifactId> + <version>2.0b5</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <version>2.4</version> + <configuration> + <archive> + <manifest> + <mainClass>org.sikuli.basics.RunSetup</mainClass> + </manifest> + </archive> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2.1</version> + <configuration> + <mainClass>org.sikuli.basics.RunSetup</mainClass> + </configuration> + </plugin> + </plugins> + </build> </project> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/sikuli.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

