Utility package.
A bunch of useful classes..
Here is the list of declaration for util. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>pl.net.bluesoft</groupId> <artifactId>util</artifactId> <version>2.0</version> </dependency>
If you think this Maven repository POM file listing for util is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License, Version 2.1
URL: http://www.gnu.org/licenses/lgpl-2.1.txt.
The util-2.0 has 2 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-beanutils 1.8.3 BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. | 121 |
Data Structure | commons-lang3 3.1 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 287 |
The following packages are defined in the util-2.0.jar
pl.net.bluesoft.util.cache pl.net.bluesoft.util.criteria pl.net.bluesoft.util.criteria.lang pl.net.bluesoft.util.eventbus pl.net.bluesoft.util.eventbus.listenables pl.net.bluesoft.util.io pl.net.bluesoft.util.lang pl.net.bluesoft.util.lang.cquery pl.net.bluesoft.util.lang.cquery.func pl.net.bluesoft.util.lang.exception
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>pl.net.bluesoft</groupId> <artifactId>util</artifactId> <packaging>jar</packaging> <version>2.0</version> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>Utility package</name> <description>A bunch of useful classes.</description> <url>https://github.com/tlipski/BlueSoft-Util</url> <licenses> <license> <name>GNU Lesser General Public License, Version 2.1</name> <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:zmalinowski/BlueSoft-Util.git</connection> <developerConnection>scm:git:git@github.com:zmalinowski/BlueSoft-Util.git</developerConnection> <url>git@github.com:zmalinowski/BlueSoft-Util.git</url> </scm> <dependencies> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <debug>true</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>