regxmllib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sandflow</groupId> <artifactId>regxmllib</artifactId> <version>1.1.6-rc.1</version> </dependency>
<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>com.sandflow</groupId> <artifactId>regxmllib</artifactId> <version>1.1.6-rc.1</version> <packaging>jar</packaging> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <com.sandflow.config.dir>${basedir}/src/main/config</com.sandflow.config.dir> <com.sandflow.resources.dir>${basedir}/src/main/resources</com.sandflow.resources.dir> <com.sandflow.test.resources.dir>${basedir}/src/test/resources</com.sandflow.test.resources.dir> </properties> <name>regxmllib</name> <url>https://github.com/sandflow/regxmllib</url> <description>Tools and libraries for the creation of RegXML (SMPTE ST 2001-1) representations of MXF header metadata (SMPTE ST 377-1).</description> <licenses> <license> <name>BSD 2-clause "Simplified" License</name> <url>http://choosealicense.com/licenses/bsd-2-clause/</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Pierre-Anthony Lemieux</name> <email>pal@palemieux.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/sandflow/regxmllib.git</connection> <developerConnection>scm:git:https://github.com/sandflow/regxmllib.git</developerConnection> <url>https://github.com/sandflow/regxmllib.git</url> </scm> <organization> <name>Sandflow Consulting LLC</name> <url>http://www.sandflow.com</url> </organization> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>4.0.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <systemPropertyVariables> <java.util.logging.config.file>log4j.properties</java.util.logging.config.file> </systemPropertyVariables> </configuration> </plugin> </plugins> <resources> <resource> <targetPath>config</targetPath> <directory>${com.sandflow.config.dir}</directory> <filtering>true</filtering> </resource> <resource> <targetPath>resources</targetPath> <directory>${com.sandflow.resources.dir}</directory> </resource> </resources> </build> <profiles> <profile> <id>build-reference-files</id> <properties> <maven.test.skip>true</maven.test.skip> </properties> <dependencies> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>4.0.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <version>4.0.5</version> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>package</phase> <configuration> <target> <property name="classpath" refid="maven.runtime.classpath"/> <property name="resources.dir" value="${com.sandflow.test.resources.dir}"/> <ant antfile="build.xml" target="build-reference-test-files"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>