base.
My base library, a mixed bag of re-usable utility code..
Here is the list of declaration for base. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.thesett</groupId> <artifactId>base</artifactId> <version>0.8.9</version> </dependency>
If you think this Maven repository POM file listing for base is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on base-0.8.9. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | configurator 0.8.9 Configurator Bean library. | 5 |
The following packages are defined in the base-0.8.9.jar
com.thesett.util.log4j
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"> <modelVersion>4.0.0</modelVersion> <groupId>com.thesett</groupId> <artifactId>base</artifactId> <name>base</name> <version>0.8.9</version><!-- base.version --> <description>My base library, a mixed bag of re-usable utility code.</description> <url>https://www.thesett.com/build_reports/base</url> <packaging>jar</packaging> <properties> <topdir>${basedir}/..</topdir> </properties> <parent> <groupId>com.thesett</groupId> <artifactId>basebuild</artifactId> <version>0.8.9</version><!-- base.version --> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> <!-- Test only dependencies. --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>