/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
patterns-modules/ddd-contexts/ddd-contexts-sharedkernel/pom.xml
35 строк
1 KB
anuragkumawat
Java 26392 Move modules to patterns-module (#15060)
27 окт 2023, 13:27
27 окт 2023, 13:27
1028ab9
Код
Авторство
О чём код?
<?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.baeldung.dddcontexts.sharedkernel</groupId> <artifactId>ddd-contexts-sharedkernel</artifactId> <version>1.0</version> <packaging>jar</packaging> <parent> <groupId>com.baeldung.dddcontexts</groupId> <artifactId>ddd-contexts</artifactId> <version>1.0</version> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${source.version}</source> <target>${target.version}</target> </configuration> </plugin> </plugins> </build> <properties> <source.version>9</source.version> <target.version>9</target.version> </properties> </project>