util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.agentsoz</groupId>
<artifactId>util</artifactId>
<version>3.0.0</version>
</dependency><?xml version="1.0"?> <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"> <parent> <groupId>io.github.agentsoz</groupId> <artifactId>bdi-abm-integration</artifactId> <version>3.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>util</artifactId> <version>3.0.0</version> <packaging>jar</packaging> <name>Util</name> <description>Utilities for all integration and example projects</description> <repositories> <repository> <!-- Geotools is not on Maven central --> <id>osgeo</id> <name>Geotools repository</name> <url>http://download.osgeo.org/webdav/geotools</url> </repository> <repository> <id>matsim</id> <url>http://dl.bintray.com/matsim/matsim</url> </repository> <repository> <id>ojo-snapshots</id> <url>http://oss.jfrog.org/libs-snapshot</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.matsim</groupId> <artifactId>matsim</artifactId> <version>0.10.0</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.codehaus.mojo </groupId> <artifactId> license-maven-plugin </artifactId> <versionRange> [1.8,) </versionRange> <goals> <goal> update-file-header </goal> <goal> update-project-license </goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>