entity-clazz
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.bloquesoft</groupId>
<artifactId>entity-clazz</artifactId>
<version>1.0.0-alpha03</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2022-2023 zhangjian Reserved.
~ Project:bloques-entity-clazz
~ FileName:pom.xml
~ Author:zhangjian
~ date:2022/3/29 下午11:51
~ Version:0.0.1
-->
<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">
<parent>
<artifactId>entity-master</artifactId>
<groupId>io.github.bloquesoft</groupId>
<version>1.0.0-alpha03</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>entity-clazz</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.github.bloquesoft</groupId>
<artifactId>entity-core</artifactId>
<version>1.0.0-alpha03</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>