tagevent-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nfclabs</groupId> <artifactId>tagevent-model</artifactId> <version>1.1</version> </dependency>
<!-- ~ Copyright 2011-2012 NFC Labs ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.nfclabs</groupId> <artifactId>tagevent-model</artifactId> <packaging>jar</packaging> <version>1.1</version> <name>NFC Tag Event</name> <description> A canonical representations of a common NFC use case, the Tag Event, defined at the OSI Presentation Layer (Layer 6) that facilitates interoperability between disparate applications and across the whole enterprise. </description> <url>http://code.google.com/p/nfc-tag-event/</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <organization> <name>NFC Labs</name> <url>http://NFCLabs.org</url> </organization> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/nfc-tag-event/issues/</url> </issueManagement> <developers> <developer> <id>jweiss</id> <name>Jason Weiss</name> <email>jason.weiss@nfclabs.org</email> <organization>NFC Labs</organization> <timezone>-6</timezone> <roles> <role>Project Lead</role> </roles> </developer> </developers> <scm> <connection>scm:svn:https://nfc-tag-event.googlecode.com/svn/tags/tagevent-model-1.1</connection> <developerConnection>scm:svn:https://nfc-tag-event.googlecode.com/svn/tags/tagevent-model-1.1</developerConnection> <url>https://nfc-tag-event.googlecode.com/svn/tags/tagevent-model-1.1</url> </scm> <inceptionYear>2011</inceptionYear> <profiles> <profile> <id>snapshot-deploy</id> <activation> <property> <name>snapshotdeploy</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </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> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.5</version> <configuration> <argLine>-Xms256m -Xmx512m -ea</argLine> <systemPropertyVariables> <net.sourceforge.cobertura.datafile>target/cobertura/cobertura.ser </net.sourceforge.cobertura.datafile> <file.encoding>${file.encoding}</file.encoding> </systemPropertyVariables> <argLine>-Dsun.lang.ClassLoader.allowArraySyntax=true</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerVersion>1.6</compilerVersion> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <tagBase>https://nfc-tag-event.googlecode.com/svn/tags</tagBase> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <configuration> <attach>true</attach> </configuration> </plugin> </plugins> </build> </project>