furniture-taxonomy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>no.sirktek</groupId>
<artifactId>furniture-taxonomy</artifactId>
<version>3.20</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>no.sirktek</groupId>
<artifactId>furniture-taxonomy</artifactId>
<version>3.20</version>
<packaging>jar</packaging>
<name>Sirktek Furniture Taxonomy</name>
<description>RDF-S based furniture taxonomy with Java API</description>
<url>https://github.com/sirktek/sirk-furniture-taxonomy</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Sirktek development team</name>
<email>kontakt@sirktek.no</email>
<organization>Sirk-Tek AS</organization>
<organizationUrl>https://sirktek.no</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/sirktek/sirk-furniture-taxonomy.git</connection>
<developerConnection>scm:git:ssh://github.com:sirktek/sirk-furniture-taxonomy.git</developerConnection>
<url>http://github.com/sirktek/sirk-furniture-taxonomy/tree/main</url>
</scm>
<properties>
<revision>3.0-SNAPSHOT</revision>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jena.version>5.5.0</jena.version>
<slf4j.version>2.0.16</slf4j.version>
<junit.version>5.11.3</junit.version>
<lombok.version>1.18.36</lombok.version>
</properties>
<dependencies>
<!-- Sirktek Taxonomy Commons (v3.x ships the cross-cutting Manufacturer/
Model/Resource categories and the EmissionEntry/ConsistsOfEntry/
EnergySourceEntry range-marker classes referenced by this taxonomy). -->
<dependency>
<groupId>no.sirktek</groupId>
<artifactId>taxonomy-commons</artifactId>
<version>3.10</version>
</dependency>
<!-- Lombok for reducing boilerplate -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.1</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>github</id>
<name>GitHub Packages — sirk-taxonomy-commons</name>
<url>https://maven.pkg.github.com/sirktek/sirk-taxonomy-commons</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>github-packages</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/sirktek/sirk-furniture-taxonomy</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>deployment</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.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>3.3.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-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>uploaded</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>