utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.orange.labs.quickpass</groupId> <artifactId>utils</artifactId> <version>1.6.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <packaging>jar</packaging> <name>${project.artifactId}</name> <groupId>com.orange.labs.quickpass</groupId> <artifactId>utils</artifactId> <version>1.6.1</version> <url>http://cityzi.orange.fr/</url> <description>This library includes some tools for NFC developpement</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <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://orangeforge.rd.francetelecom.fr/svnroot/qps/Platforms/QuickPass/trunk/utils</url> <connection>https://orangeforge.rd.francetelecom.fr/svnroot/qps/Platforms/QuickPass/trunk/utils</connection> </scm> <developers> <developer> <name>Gael Gerard</name> </developer> <developer> <name>Davy Dermilly</name> </developer> <developer> <name>Sebastion Kuras</name> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> <version>1.4.12</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-easymock</artifactId> <version>1.4.12</version> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> <version>3.1</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-reflect</artifactId> <version>1.4.12</version> </dependency> </dependencies> <profiles> <profile> <id>osgi</id> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.6</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package>com.orange.labs.quickpass.common.utils;uses:="com.orange .labs.quickpass.common.utils.exception,org.apache.commons.lang";version ="1.3.0.SNAPSHOT",com.orange.labs.quickpass.common.utils.aop;uses:="org .aspectj.lang,org.slf4j";version="1.3.0.SNAPSHOT",com.orange.labs.quick pass.common.utils.exception;version="1.3.0.SNAPSHOT" </Export-Package> <Import-Package>org.apache.commons.lang;resolution:="optional";version="[2.6,3)",org.aspectj.la ng;resolution:="optional",org.slf4j;version="[1.6,2)" </Import-Package> </instructions> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>