Skip to content

Commit b448702

Browse files
authored
[JAVA-41968] Moving some article links on Github - core-groovy-modules (eugenp#18149)
1 parent 6854099 commit b448702

38 files changed

+96
-34
lines changed

core-groovy-modules/core-groovy-2/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,12 @@ This module contains articles about core Groovy concepts
44

55
## Relevant articles:
66

7-
- [Template Engines in Groovy](https://www.baeldung.com/groovy-template-engines)
87
- [Groovy def Keyword](https://www.baeldung.com/groovy-def-keyword)
98
- [Integrating Groovy into Java Applications](https://www.baeldung.com/groovy-java-applications)
109
- [Concatenate Strings with Groovy](https://www.baeldung.com/groovy-concatenate-strings)
11-
- [Metaprogramming in Groovy](https://www.baeldung.com/groovy-metaprogramming)
1210
- [A Quick Guide to Working with Web Services in Groovy](https://www.baeldung.com/groovy-web-services)
13-
- [Categories in Groovy](https://www.baeldung.com/groovy-categories)
1411
- [How to Determine the Data Type in Groovy](https://www.baeldung.com/groovy-determine-data-type)
1512
- [Converting a String to a Date in Groovy](https://www.baeldung.com/groovy-string-to-date)
1613
- [Convert String to Integer in Groovy](https://www.baeldung.com/groovy-convert-string-to-integer)
1714
- [Groovy Variable Scope](https://www.baeldung.com/groovy/variable-scope)
18-
- [[<-- Prev]](/core-groovy-modules/core-groovy)
15+
- More articles: [[<-- prev]](../core-groovy) [[next -->]](../core-groovy-3)

core-groovy-modules/core-groovy-2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
<version>${commons-lang3.version}</version>
2828
</dependency>
2929
<dependency>
30-
<groupId>org.codehaus.groovy</groupId>
30+
<groupId>org.apache.groovy</groupId>
3131
<artifactId>groovy-all</artifactId>
32-
<version>${groovy.version}</version>
32+
<version>${groovy-all.version}</version>
3333
<type>pom</type>
3434
</dependency>
3535
<dependency>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Core Groovy
2+
3+
This module contains articles about core Groovy concepts
4+
5+
## Relevant articles:
6+
7+
- [An Introduction to Traits in Groovy](https://www.baeldung.com/groovy-traits)
8+
- [JDBC with Groovy](https://www.baeldung.com/jdbc-groovy)
9+
- [Guide to I/O in Groovy](https://www.baeldung.com/groovy-io)
10+
- [Metaprogramming in Groovy](https://www.baeldung.com/groovy-metaprogramming)
11+
- [Template Engines in Groovy](https://www.baeldung.com/groovy-template-engines)
12+
- [Categories in Groovy](https://www.baeldung.com/groovy-categories)
13+
- More articles: [[<-- prev]](../core-groovy-2)
14+
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>core-groovy-3</artifactId>
7+
<name>core-groovy-3</name>
8+
<packaging>jar</packaging>
9+
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>core-groovy-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>org.apache.groovy</groupId>
19+
<artifactId>groovy</artifactId>
20+
<version>${groovy.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.apache.groovy</groupId>
24+
<artifactId>groovy-all</artifactId>
25+
<version>${groovy-all.version}</version>
26+
<type>pom</type>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.spockframework</groupId>
30+
<artifactId>spock-core</artifactId>
31+
<version>${spock-core.version}</version>
32+
<scope>test</scope>
33+
</dependency>
34+
</dependencies>
35+
36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>org.codehaus.gmavenplus</groupId>
40+
<artifactId>gmavenplus-plugin</artifactId>
41+
<version>${gmavenplus-plugin.version}</version>
42+
<executions>
43+
<execution>
44+
<goals>
45+
<goal>addSources</goal>
46+
<goal>addTestSources</goal>
47+
<goal>compile</goal>
48+
<goal>compileTests</goal>
49+
</goals>
50+
</execution>
51+
</executions>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
56+
</project>

0 commit comments

Comments
 (0)