| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- <?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>jp.yamoto</groupId>
- <artifactId>farm</artifactId>
- <version>1.0.0</version>
- <name>yamoto</name>
- <url>http://www.yamoto.jp</url>
- <description>農家(農業法人)支援</description>
-
- <properties>
- <farm.version>1.0.0</farm.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>21</java.version>
- <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
- <mybatis-spring-boot.version>3.0.4</mybatis-spring-boot.version>
- <druid.version>1.2.27</druid.version>
- <bitwalker.version>1.21</bitwalker.version>
- <swagger.version>3.0.0</swagger.version>
- <kaptcha.version>2.3.3</kaptcha.version>
- <pagehelper.boot.version>2.1.0</pagehelper.boot.version>
- <fastjson.version>2.0.43</fastjson.version>
- <oshi.version>6.8.3</oshi.version>
- <commons.io.version>2.19.0</commons.io.version>
- <poi.version>4.1.2</poi.version>
- <velocity.version>2.3</velocity.version>
- <jwt.version>0.9.1</jwt.version>
- <mysql.version>8.2.0</mysql.version>
- <postgresql.version>42.7.8</postgresql.version>
- <jaxb-api.version>2.3.1</jaxb-api.version>
- <jakarta.version>6.0.0</jakarta.version>
- <springdoc.version>2.8.9</springdoc.version>
- </properties>
- <!-- dependencies -->
- <dependencyManagement>
- <dependencies>
- <!-- SpringBoot dependencies-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>3.5.8</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- Database connection pool -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-3-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <!-- Analyze client operating systems, browsers, etc -->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>${bitwalker.version}</version>
- </dependency>
- <!-- pagehelper -->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>${pagehelper.boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis-spring-boot.version}</version>
- </dependency>
- <!-- Postgresql -->
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgresql.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>${jaxb-api.version}</version>
- </dependency>
- <dependency>
- <groupId>jakarta.servlet</groupId>
- <artifactId>jakarta.servlet-api</artifactId>
- <version>${jakarta.version}</version>
- </dependency>
- <!-- System Info -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>${oshi.version}</version>
- </dependency>
- <!-- spring-doc -->
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
- <version>${springdoc.version}</version>
- </dependency>
- <!-- io tools -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons.io.version}</version>
- </dependency>
- <!-- excel tools -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <!-- velocity templete -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>${velocity.version}</version>
- </dependency>
- <!--alibaba JSON -->
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!-- Token-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${jwt.version}</version>
- </dependency>
- <!-- kaptcha -->
- <dependency>
- <groupId>pro.fessional</groupId>
- <artifactId>kaptcha</artifactId>
- <version>${kaptcha.version}</version>
- </dependency>
- <!-- JOB-->
- <dependency>
- <groupId>jp.yamoto</groupId>
- <artifactId>farm-quartz</artifactId>
- <version>${farm.version}</version>
- </dependency>
- <!-- Farm CRM Biz-->
- <dependency>
- <groupId>jp.yamoto</groupId>
- <artifactId>farm-crm-biz</artifactId>
- <version>${farm.version}</version>
- </dependency>
- <!-- Farm Sankin Biz-->
- <dependency>
- <groupId>jp.yamoto</groupId>
- <artifactId>farm-sankin-biz</artifactId>
- <version>${farm.version}</version>
- </dependency>
- <!-- Common-->
- <dependency>
- <groupId>jp.yamoto</groupId>
- <artifactId>farm-common</artifactId>
- <version>${farm.version}</version>
- </dependency>
- <!-- Common biz-->
- <dependency>
- <groupId>jp.yamoto</groupId>
- <artifactId>farm-common-biz</artifactId>
- <version>${farm.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>farm-crm</module>
- <module>farm-crm-biz</module>
- <module>farm-sankin</module>
- <module>farm-sankin-biz</module>
- <module>farm-common</module>
- <module>farm-quartz</module>
- <module>farm-common-biz</module>
- </modules>
- <packaging>pom</packaging>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.13.0</version>
- <configuration>
- <parameters>true</parameters>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>3.3.0</version>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <profileActive>dev</profileActive>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <profileActive>test</profileActive>
- </properties>
- </profile>
- <profile>
- <id>stg1</id>
- <properties>
- <profileActive>stg1</profileActive>
- </properties>
- </profile>
- <profile>
- <id>stg2</id>
- <properties>
- <profileActive>stg2</profileActive>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <profileActive>prod</profileActive>
- </properties>
- </profile>
- </profiles>
- <repositories>
- <repository>
- <id>public</id>
- <name>Maven Central repository</name>
- <url>https://repo1.maven.org/maven2</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>public</id>
- <name>Maven Central repository</name>
- <url>https://repo1.maven.org/maven2</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- </project>
|