ifcopenshellplugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opensourcebim</groupId> <artifactId>ifcopenshellplugin</artifactId> <version>0.5.96</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"> <modelVersion>4.0.0</modelVersion> <groupId>org.opensourcebim</groupId> <artifactId>ifcopenshellplugin</artifactId> <version>0.5.96</version> <name>IfcOpenShell-BIMserver-plugin</name> <description>BIMserver plugin that uses IfcOpenShell to generate geometry from IFC files</description> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin</url> <organization> <name>OpenSource BIM</name> <url>opensourcebim.org</url> </organization> <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> <name>Ruben de Laat</name> <email>ruben@logic-labs.nl</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</connection> <developerConnection>scm:git:https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</developerConnection> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin.git</url> <tag>ifcopenshellplugin-0.5.96</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/opensourceBIM/IfcOpenShell-BIMserver-plugin/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <timestamp>${maven.build.timestamp}</timestamp> </properties> <dependencies> <dependency> <groupId>org.opensourcebim</groupId> <artifactId>pluginbase</artifactId> <version>1.5.187</version> </dependency> </dependencies> <repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2</url> </repository> </repositories> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <targetPath>plugin</targetPath> <filtering>true</filtering> <directory>plugin</directory> </resource> <resource> <targetPath>img</targetPath> <directory>img</directory> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.6.0</version> <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.10.1</version> <configuration> <release>8</release> </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>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <checkModificationExcludes> <checkModificationExclude>pom.xml</checkModificationExclude> </checkModificationExcludes> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <keyname>${gpg.keyname}</keyname> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <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> </project>