svarog-interfaces
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.peruntech</groupId> <artifactId>svarog-interfaces</artifactId> <version>3.2.16</version> </dependency>
<!-- Copyright (c) 2013, 2019 Perun Technologii DOOEL Skopje. All rights reserved. This program and the accompanying materials are made available under the terms of the Apache License Version 2.0 or the Svarog License Agreement (the "License"); You may not use this file except in compliance with the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See LICENSE file in the project root for the specific language governing permissions and limitations under the License. --> <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.peruntech</groupId> <artifactId>svarog-interfaces</artifactId> <version>3.2.16</version> <packaging>jar</packaging> <organization> <name>Perun Technologies</name> <url>http://peruntech.org</url> </organization> <name>Svarog API Interfaces</name> <url>https://github.com/PerunTech/svarog-interfaces</url> <scm> <connection>scm:git:git@github.com:PerunTech/svarog-interfaces.git</connection> <developerConnection>scm:git:git@github.com:PerunTech/svarog-interfaces.git</developerConnection> <url>https://github.com/PerunTech/svarog-interfaces.git</url> </scm> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>ristepejov</id> <name>Riste Pejov</name> <email>r.pejov@prtech.mk</email> <url>http://www.perun.tech</url> <organization>Perun Technologies</organization> <organizationUrl>http://www.perun.tech</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Europe/Skopje</timezone> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <version>1.3.1</version> <configuration> <jreleaser> <signing> <active>ALWAYS</active> <armored>true</armored> </signing> <deploy> <maven> <nexus2> <maven-central> <active>ALWAYS</active> <url>https://s01.oss.sonatype.org/service/local</url> <closeRepository>false</closeRepository> <releaseRepository>false</releaseRepository> <stagingRepositories>target/staging-deploy</stagingRepositories> </maven-central> </nexus2> </maven> </deploy> </jreleaser> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.vividsolutions</groupId> <artifactId>jts-core</artifactId> <version>1.14.0</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.17.1</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.9</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.3</version> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <description>Library containing all shared Svarog structures/interaces, used by libraries outside of svarog, which don't need the full svarog to operate.</description> </project>