rest2typescript
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.thomas-oster</groupId>
<artifactId>rest2typescript</artifactId>
<version>1.3.14</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<groupId>de.thomas-oster</groupId>
<artifactId>rest2typescript</artifactId>
<packaging>pom</packaging>
<version>1.3.14</version>
<name>rest2typescript</name>
<description>Maven plugin that creates a Typescript file containing a REST-API Client for all your Spring @Controllers and also interfaces for any type you like
if you add the @ToTypescript annotation
</description>
<url>https://rest2typescript.thomas-oster.de</url>
<issueManagement>
<url>https://gitlab.com/t-oster/rest2typescript/issues</url>
<system>GitLab Issues</system>
</issueManagement>
<scm>
<connection>scm:git:git://gitlab.com:t-oster/rest2typescript.git</connection>
<developerConnection>scm:git:git@gitlab.com:t-oster/rest2typescript.git</developerConnection>
<tag>1.2</tag>
<url>https://gitlab.com/t-oster/rest2typescript</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Thomas Oster</name>
<email>mail@thomas-oster.de</email>
<url>https://thomas-oster.de</url>
<id>t-oster</id>
</developer>
</developers>
<distributionManagement>
<repository>
<id>central</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<modules>
<module>rest2typescript-annotations</module>
<module>rest2typescript-maven-plugin</module>
</modules>
<profiles>
<profile>
<!-- only do sourcode, javadoc and gpg when releasing -->
<id>release</id>
<build>
<plugins>
<!-- attach source code -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- include javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>