<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>org.opensourcebim</groupId> <artifactId>ifcopenshellplugin</artifactId> <version>0.5.26-SNAPSHOT</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format> </properties> <description>BIMserver plugin that uses IfcOpenShell to generate geometry from IFC files</description> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <targetPath>plugin</targetPath> <directory>plugin</directory> <filtering>true</filtering> </resource> <resource> <targetPath>exe</targetPath> <directory>exe</directory> </resource> <resource> <targetPath>img</targetPath> <directory>img</directory> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-plugin</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>plugin/plugin.xml</file> <type>xml</type> <classifier>plugin</classifier> </artifact> <artifact> <file>plugin/icon.png</file> <type>png</type> <classifier>icon</classifier> </artifact> <artifact> <file>${project.build.outputDirectory}/plugin/version.properties</file> <type>properties</type> <classifier>version</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <project.scm.id>github.com</project.scm.id> <checkModificationExcludes> <checkModificationExclude>pom.xml</checkModificationExclude> </checkModificationExcludes> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>central</id> <url>http://repo1.maven.org/maven2</url> </repository> </repositories> <profiles> <profile> <id>release</id> <build> <plugins> <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.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-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>archiva.snapshots</id> <name>Internal Snapshot Repository</name> <url>${snapshotsrepo}/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</url> <connection>scm:git:https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</connection> <developerConnection>scm:git:https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</developerConnection> <tag>ifcopenshellplugin-0.5.22</tag> </scm> <organization> <name>OpenSource BIM</name> <url>opensourcebim.org</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin/issues</url> </issueManagement> <name>IfcOpenShellPlugin</name> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin</url> <licenses> <license> <name>GNU Affero General Public License</name> <url>http://www.gnu.org/licenses/agpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <email>ruben@logic-labs.nl</email> <name>Ruben de Laat</name> </developer> </developers> <dependencies> <dependency> <groupId>blueprints.interface</groupId> <artifactId>ifcconverter</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.13</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.13</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.10</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson-parent</artifactId> <version>2.8.0</version> <type>pom</type> </dependency> </dependencies> </project>