javalib-core.
Base for implementing Java test libraries for Robot Framework.
Here is the list of declaration for javalib-core. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.robotframework</groupId> <artifactId>javalib-core</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for javalib-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The javalib-core-1.2 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-collections 3.2 Types that extend and augment the Java Collections Framework. | 366 |
JUnit | junit 4.5 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 385 |
Testing Mock | jmock 1.2.0 jMock is a library for testing Java code using mock objects | 121 |
Testing Mock | jmock-cglib 1.2.0 jMock is a library for testing Java code using mock objects. The CGLIB extension allows creating of mock objects for classes. | 111 |
The following plugins are used in the javalib-core-1.2.jar
The following packages are defined in the javalib-core-1.2.jar
org.robotframework.javalib.annotation org.robotframework.javalib.beans.annotation org.robotframework.javalib.beans.classpath org.robotframework.javalib.beans.common org.robotframework.javalib.com.thoughtworks.paranamer org.robotframework.javalib.factory org.robotframework.javalib.keyword org.robotframework.javalib.library org.robotframework.javalib.org.apache.commons.collections org.robotframework.javalib.org.apache.commons.collections.collection org.robotframework.javalib.org.apache.commons.collections.functors org.robotframework.javalib.org.apache.commons.collections.iterators org.robotframework.javalib.org.apache.commons.collections.keyvalue org.robotframework.javalib.org.apache.commons.collections.list org.robotframework.javalib.org.apache.commons.collections.map org.robotframework.javalib.org.apache.commons.collections.set org.robotframework.javalib.reflection org.robotframework.javalib.util
Here is the content of the POM file.
<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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.robotframework</groupId> <artifactId>javalib-core</artifactId> <packaging>jar</packaging> <version>1.2</version> <name>javalib-core</name> <description>Base for implementing Java test libraries for Robot Framework</description> <url>https://github.com/robotframework/JavalibCore</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/robotframework/JavalibCore</url> <connection>scm:git:https//github.com/robotframework/JavalibCore</connection> </scm> <dependencies> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer</artifactId> <version>1.1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>jmock</groupId> <artifactId>jmock</artifactId> <version>1.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>jmock</groupId> <artifactId>jmock-cglib</artifactId> <version>1.2.0</version> <scope>test</scope> </dependency> </dependencies> <build> <directory>${project.basedir}/target with spaces</directory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.robotframework</groupId> <artifactId>robotframework-maven-plugin</artifactId> <version>1.0.8</version> <executions> <execution> <goals> <goal>run</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <logLevel>DEBUG</logLevel> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>jarjar-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>package</phase> <goals> <goal>jarjar</goal> </goals> <configuration> <includes> <include>commons-collections:commons-collections</include> <include>com.thoughtworks.paranamer:paranamer</include> </includes> <rules> <rule> <pattern>org.apache.commons.collections.**</pattern> <result>org.robotframework.javalib.@0</result> </rule> <rule> <pattern>com.thoughtworks.**</pattern> <result>org.robotframework.javalib.@0</result> </rule> <keep> <pattern>org.robotframework.javalib.**</pattern> </keep> </rules> </configuration> </execution> </executions> </plugin> <plugin> <!-- Use "mvn install -Dgpg.skip=true" to skip signing --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <configuration> <use>false</use> </configuration> </plugin> </plugins> </reporting> </project>