inf5153.mesh
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ace-design</groupId>
<artifactId>inf5153.mesh</artifactId>
<version>1.0</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>pom</packaging>
<groupId>io.github.ace-design</groupId>
<artifactId>inf5153.mesh</artifactId>
<version>1.0</version>
<name>ACE :: UQAM :: Mesh</name>
<description>Mesh generator and visualizer</description>
<modules>
<module>generator</module>
<module>io</module>
<module>visualizer</module>
<module>demo</module>
</modules>
<url>https://github.com/conception-objet/mesh-generator</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Sebastien Mosser</name>
<email>mosser.sebastien@uqam.ca</email>
<organization>UQAM</organization>
<organizationUrl>http://info.uqam.ca/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/conception-objet/mesh-generator.git</connection>
<developerConnection>scm:git:ssh://github.com:conception-objet/mesh-generator.git</developerConnection>
<url>http://github.com/conception-objet/mesh-generator/tree/master</url>
</scm>
<properties>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>central</id>
<build>
<plugins>
<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>
<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>
<configuration>
<source>13</source>
<detectJavaApiLink>false</detectJavaApiLink>
<excludePackageNames>ca.uqam.ace.inf5153.mesh.io.Structs</excludePackageNames>
</configuration>
<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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>