BAEL-2398: move coroutines-java module into libraries-concurrency module

This commit is contained in:
Waldemar 2020-04-04 11:48:18 +02:00
parent ffc854e2f0
commit 0cb40ad266
3 changed files with 13 additions and 13 deletions

View File

@ -2,19 +2,14 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>coroutines-java</artifactId> <artifactId>coroutines-java</artifactId>
<version>1.0-SNAPSHOT</version>
<name>coroutines-java</name> <name>coroutines-java</name>
<url>http://baeldung.com</url>
<properties> <parent>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <groupId>com.baeldung</groupId>
<maven.compiler.source>1.8</maven.compiler.source> <artifactId>libraries-concurrency</artifactId>
<maven.compiler.target>1.8</maven.compiler.target> <version>1.0.0-SNAPSHOT</version>
</properties> </parent>
<dependencies> <dependencies>
<dependency> <dependency>

View File

@ -2,14 +2,19 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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>
<artifactId>libraries-concurrency</artifactId>
<name>libraries-concurrency</name>
<packaging>pom</packaging>
<parent> <parent>
<artifactId>parent-modules</artifactId> <artifactId>parent-modules</artifactId>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>libraries-concurrency</artifactId>
<modules>
<module>coroutines-java</module>
</modules>
</project> </project>