groovy-updater
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.openweb.hippo.updater</groupId> <artifactId>groovy-updater</artifactId> <version>1.17</version> </dependency>
<!-- ~ Copyright 2019 Open Web IT B.V. (https://www.openweb.nl/) ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ 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 the License 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>nl.openweb.hippo.updater</groupId> <artifactId>groovy-updater</artifactId> <version>1.17</version> <packaging>pom</packaging> <name>Groovy updater</name> <description>This project is designed for Hippo developers to have an easy way to create updaters in groovy, without being bothered with the repository data yaml </description> <url>https://github.com/openweb-nl/hippo-groovy-updater</url> <scm> <connection>scm:git:git@github.com:openweb-nl/hippo-groovy-updater.git</connection> <developerConnection>scm:git:git@github.com:openweb-nl/hippo-groovy-updater.git </developerConnection> <url>https://github.com/openweb-nl/hippo-groovy-updater</url> <tag>groovy-updater-1.17</tag> </scm> <distributionManagement> <snapshotRepository> <id>openweb-nexus-snapshots</id> <url>https://nexus.open-web.nl/nexus/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <organization> <name>Open Web IT</name> <url>https://www.openweb.nl</url> </organization> <developers> <developer> <id>joostoudeman</id> <name>Joost Oudeman</name> <email>joost@openweb.nl</email> <url>https://stash.open-web.nl/users/joostoudeman</url> <roles> <role>Lead Architect</role> <role>Lead Developer</role> </roles> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <maven.compiler.release>17</maven.compiler.release> <commons-io.version>2.16.1</commons-io.version> <commons-lang3.version>3.14.0</commons-lang3.version> <groovy.version>4.0.23</groovy.version> <snakeyaml.version>2.2</snakeyaml.version> <hippo.repository.version>16.1.0</hippo.repository.version> <hippo.services.version>16.1.0</hippo.services.version> <javax.jcr.version>2.0</javax.jcr.version> <junit-jupiter.version>5.10.1</junit-jupiter.version> <jackrabbit.version>2.21.19-h4</jackrabbit.version> <maven.plugin.api.version>3.9.8</maven.plugin.api.version> <maven.dependency.plugin.version>3.8.0</maven.dependency.plugin.version> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <maven.release.plugin.version>3.1.1</maven.release.plugin.version> <maven.javadoc.plugin.version>3.10.0</maven.javadoc.plugin.version> <maven.gpg.plugin.version>3.2.5</maven.gpg.plugin.version> <maven.deploy.plugin.version>3.1.3</maven.deploy.plugin.version> <maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version> <maven.clean.plugin.version>3.4.0</maven.clean.plugin.version> <maven.install.plugin.version>3.1.3</maven.install.plugin.version> <maven.jar.plugin.version>3.4.2</maven.jar.plugin.version> <maven.resources.plugin.version>3.3.1</maven.resources.plugin.version> <maven.site.plugin.version>3.20.0</maven.site.plugin.version> <maven.surefire.plugin.version>3.5.0</maven.surefire.plugin.version> <maven.plugin.annotations.version>3.15.0</maven.plugin.annotations.version> <maven.plugin.plugin.version>3.15.0</maven.plugin.plugin.version> <maven.plugin.jacoco.version>0.8.12</maven.plugin.jacoco.version> <apache.sling.version>1.6.0</apache.sling.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>2.0.16</slf4j.version> <owasp.depcheck.plugin.version>6.3.2</owasp.depcheck.plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.plugin.api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> <dependency> <groupId>org.onehippo.cms7</groupId> <artifactId>hippo-repository-dependencies</artifactId> <version>${hippo.repository.version}</version> <type>pom</type> <scope>runtime</scope> </dependency> <dependency> <groupId>org.onehippo.cms7</groupId> <artifactId>hippo-services</artifactId> <version>${hippo.services.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> <version>${javax.jcr.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.jcr-mock</artifactId> <version>${apache.sling.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven.clean.plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven.install.plugin.version}</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven.site.plugin.version}</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</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-deploy-plugin</artifactId> <version>${maven.deploy.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.plugin.version}</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven.plugin.jacoco.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${owasp.depcheck.plugin.version}</version> <configuration> <skipProvidedScope>true</skipProvidedScope> <skipRuntimeScope>true</skipRuntimeScope> <format>html</format> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.8.8</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${maven.dependency.plugin.version}</version> <inherited>false</inherited> <executions> <execution> <inherited>false</inherited> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <releases> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </releases> <id>bloomreach-maven2-enterprise</id> <name>Bloomreach Maven 2 Enterprise</name> <url>https://maven.bloomreach.com/repository/maven2-enterprise</url> </repository> </repositories> <modules> <module>annotations</module> <module>bootstrapgenerator</module> <module>mavenplugin</module> <module>sampleproject</module> <module>updatersync</module> </modules> </project>