common.
My common library, a mixed bag of re-usable utility code..
Here is the list of declaration for common. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.thesett</groupId> <artifactId>common</artifactId> <version>0.8.9</version> </dependency>
If you think this Maven repository POM file listing for common 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 common-0.8.9. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | power_model 0.8.9 Power model provides the ability to reflect and navigate on Java data models. It also provides some useful data types that can be used in data modelling. | 5 |
Library | configurator 0.8.9 Configurator Bean library. | 5 |
The following plugins are used in the common-0.8.9.jar
The following packages are defined in the common-0.8.9.jar
com.thesett.common.error com.thesett.common.geom com.thesett.common.io com.thesett.common.jndi com.thesett.common.parsing com.thesett.common.properties com.thesett.common.reflect com.thesett.common.state com.thesett.common.swing.surface com.thesett.common.swing.workflow com.thesett.common.swing.workpanel com.thesett.common.throttle com.thesett.common.tx com.thesett.common.util com.thesett.common.util.concurrent com.thesett.common.util.distributed com.thesett.common.util.doublemaps com.thesett.common.util.logic com.thesett.common.util.maps com.thesett.common.util.priority com.thesett.common.util.queues com.thesett.common.util.visitor com.thesett.common.validate com.thesett.common.value
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>common</artifactId> <name>common</name> <version>0.8.9</version><!-- base.version --> <description>My common library, a mixed bag of re-usable utility code.</description> <url>https://www.thesett.com/build_reports/common</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> <!-- Test only dependencies. --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Create a jar for the tests. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>