Skip to content

Commit

Permalink
set release version: 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coremedia-ci committed Nov 16, 2021
1 parent a65c016 commit fd3ef6b
Show file tree
Hide file tree
Showing 5 changed files with 301 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.coremedia.labs.plugins</groupId>
<artifactId>feedback-hub-adapter-acrolinx</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<packaging>pom</packaging>

<modules>
Expand Down
85 changes: 85 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<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>com.coremedia.labs.plugins</groupId>
<artifactId>feedback-hub-adapter-acrolinx</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>studio-server</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<docs.directory>${project.basedir}/docs</docs.directory>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<cleanLicensesOutputDirectory>true</cleanLicensesOutputDirectory>
<errorRemedy>ignore</errorRemedy>
<excludedGroups>^com\.coremedia\.</excludedGroups>
<excludeTransitiveDependencies>true</excludeTransitiveDependencies>
<includeTransitiveDependencies>false</includeTransitiveDependencies>
<licensesOutputFile>${docs.directory}/third-party-licenses/licenses.xml</licensesOutputFile>
<licensesOutputDirectory>${docs.directory}/third-party-licenses</licensesOutputDirectory>
<outputDirectory>${docs.directory}</outputDirectory>
<sortByGroupIdAndArtifactId>true</sortByGroupIdAndArtifactId>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>docs-third-party</id>
<!--
Will create generated resources for docs/ folder.
-->
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-docs-licenses</id>
<goals>
<goal>aggregate-add-third-party</goal>
<goal>aggregate-download-licenses</goal>
</goals>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@coremedia-labs/studio-client.main.feedback-hub-adapter-acrolinx",
"author": "CoreMedia GmbH",
"license": "CoreMedia Open Source License",
"version": "2.0.0-SNAPSHOT",
"version": "2.0.0",
"private": true,
"dependencies": {
"@coremedia/studio-client.cap-base-models": "2110.1.0-pr3",
Expand Down
2 changes: 1 addition & 1 deletion studio-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.coremedia.labs.plugins</groupId>
<artifactId>studio-server.feedback-hub-adapter-acrolinx</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>

<properties>
<maven.compiler.release>11</maven.compiler.release>
Expand Down
213 changes: 213 additions & 0 deletions studio-server/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,213 @@
<?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>com.coremedia.labs.plugins</groupId>
<artifactId>studio-server.feedback-hub-adapter-acrolinx</artifactId>
<version>2.0.0-SNAPSHOT</version>

<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<cm.studio-server.core.version>2110.1-pr3</cm.studio-server.core.version>
<cm.common.core.version>2110.1-pr3</cm.common.core.version>
</properties>

<repositories>
<repository>
<id>coremedia.external.releases</id>
<url>https://repository.coremedia.com/nexus/content/groups/cms/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>coremedia.external.releases</id>
<url>https://repository.coremedia.com/nexus/content/groups/cms/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>studio-server-core-bom</artifactId>
<version>${cm.studio-server.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>studio-server-thirdparty-for-plugins-bom</artifactId>
<version>${cm.studio-server.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>common-core-bom</artifactId>
<version>${cm.common.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.acrolinx.client</groupId>
<artifactId>sdk</artifactId>
<version>1.0.12</version>
</dependency>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>common.beans-for-plugins</artifactId>
</dependency>
<dependency>
<groupId>com.coremedia.ui</groupId>
<artifactId>cap-rest-service</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>cap-unified-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.coremedia.feedbackhub</groupId>
<artifactId>feedback-hub-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.coremedia.cms</groupId>
<artifactId>cap-multisite</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptors>
<descriptor>src/assembly/descriptor.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-plugin</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/configuration.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>**/configuration.properties</exclude>
</excludes>
</resource>
</resources>
</build>
</project>

0 comments on commit fd3ef6b

Please sign in to comment.