2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:51:04 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>structurizr</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>structurizr</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.structurizr</groupId>
|
|
|
|
<artifactId>structurizr-core</artifactId>
|
|
|
|
<version>${structurizr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.structurizr</groupId>
|
|
|
|
<artifactId>structurizr-spring</artifactId>
|
|
|
|
<version>${structurizr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.structurizr</groupId>
|
|
|
|
<artifactId>structurizr-client</artifactId>
|
|
|
|
<version>${structurizr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.structurizr</groupId>
|
|
|
|
<artifactId>structurizr-analysis</artifactId>
|
|
|
|
<version>${structurizr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.structurizr</groupId>
|
|
|
|
<artifactId>structurizr-plantuml</artifactId>
|
|
|
|
<version>${structurizr.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2020-07-07 07:18:10 -04:00
|
|
|
<structurizr.version>1.0.0</structurizr.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|