mannotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sta-soft</groupId>
<artifactId>mannotations</artifactId>
<version>1.4</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>
<parent>
<groupId>com.sta-soft</groupId>
<artifactId>masterpom</artifactId>
<version>1.11</version>
</parent>
<artifactId>mannotations</artifactId>
<version>1.4</version>
<packaging>jar</packaging>
<name>MAnnotations</name>
<description>Annotations for all M-Projects, for Generator3 and for Generator3 based projects.</description>
<url>http://www.sta-soft.com</url>
<organization>
<name>>StA-Soft<</name>
<url>http://www.sta-soft.com</url>
</organization>
<inceptionYear>2019-2021, 2023</inceptionYear>
<developers>
<developer>
<name>Steffen Albrecht</name>
<email>steffen.albrecht.ef@sta-soft.com</email>
<organization>>StA-Soft<</organization>
<organizationUrl>http://www.sta-soft.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:svn:http://ubuntu2/svn/myrepo/MAnnotations/trunk</connection>
<developerConnection>scm:svn:http://ubuntu2/svn/myrepo/MAnnotations/trunk</developerConnection>
<url>http://ubuntu2/svn/myrepo/MAnnotations/trunk/</url>
</scm>
<properties>
<auto-service.version>1.0-rc2</auto-service.version>
</properties>
<build>
<!--
<resources>
<resource>
<directory>src/test/resources</directory>
<includes>
<include>**/services/*</include>
</includes>
</resource>
</resources>
-->
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes</outputDirectory>
<resources>
<resource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<!--
<configuration>
<includes>
<include></include>
</includes>
</configuration>
-->
</plugin>
</plugins>
</build>
<dependencies>
<!-- MLogger -->
<dependency>
<groupId>com.sta-soft</groupId>
<artifactId>mlogger</artifactId>
<version>1.41</version>
</dependency>
<!-- Google-Auto-Service -->
<!--
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${auto-service.version}</version>
<scope>provided</scope>
</dependency>
-->
<!-- JavaC-Tools -->
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>