系统提交

master
yangjun 2023-11-15 11:01:20 +08:00
parent 75582c2d4c
commit 1ce38bf07b
1 changed files with 142 additions and 142 deletions

View File

@ -1,142 +1,142 @@
<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> <modelVersion>4.0.0</modelVersion>
<groupId>com.cskefu.cc</groupId> <groupId>com.cskefu.cc</groupId>
<artifactId>contact-center</artifactId> <artifactId>contact-center</artifactId>
<packaging>war</packaging> <packaging>jar</packaging>
<name>cc-core</name> <name>cc-core</name>
<description>春松客服:开源客服系统</description> <description>春松客服:开源客服系统</description>
<licenses> <licenses>
<license> <license>
<name>Chunsong Public License, version 1.0</name> <name>Chunsong Public License, version 1.0</name>
<url>https://docs.cskefu.com/licenses/v1.html</url> <url>https://docs.cskefu.com/licenses/v1.html</url>
<comments> <comments>
Copyright (C) 2023 Beijing Huaxia Chunsong Technology Co., Ltd. Copyright (C) 2023 Beijing Huaxia Chunsong Technology Co., Ltd.
</comments> </comments>
</license> </license>
</licenses> </licenses>
<parent> <parent>
<groupId>com.cskefu.cc</groupId> <groupId>com.cskefu.cc</groupId>
<artifactId>cc-root</artifactId> <artifactId>cc-root</artifactId>
<version>8.0.0-SNAPSHOT</version> <version>8.0.0-SNAPSHOT</version>
<!-- for Chatopera Nexus reference if file is available with latest version --> <!-- for Chatopera Nexus reference if file is available with latest version -->
<!-- <relativePath/> --> <!-- <relativePath/> -->
<!-- for local reference if file is available with latest version --> <!-- for local reference if file is available with latest version -->
<relativePath>../root/pom.xml</relativePath> <relativePath>../root/pom.xml</relativePath>
</parent> </parent>
<build> <build>
<finalName>contact-center</finalName> <finalName>contact-center</finalName>
<plugins> <plugins>
<plugin> <plugin>
<groupId>pl.project13.maven</groupId> <groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId> <artifactId>git-commit-id-plugin</artifactId>
<version>2.2.5</version> <version>2.2.5</version>
<executions> <executions>
<execution> <execution>
<id>get-the-git-infos</id> <id>get-the-git-infos</id>
<goals> <goals>
<goal>revision</goal> <goal>revision</goal>
</goals> </goals>
<!-- *NOTE*: The default phase of revision is initialize, but in case you want to change it, you can do so by adding the phase here --> <!-- *NOTE*: The default phase of revision is initialize, but in case you want to change it, you can do so by adding the phase here -->
<phase>initialize</phase> <phase>initialize</phase>
</execution> </execution>
<execution> <execution>
<id>validate-the-git-infos</id> <id>validate-the-git-infos</id>
<goals> <goals>
<goal>validateRevision</goal> <goal>validateRevision</goal>
</goals> </goals>
<!-- *NOTE*: The default phase of validateRevision is verify, but in case you want to change it, you can do so by adding the phase here --> <!-- *NOTE*: The default phase of validateRevision is verify, but in case you want to change it, you can do so by adding the phase here -->
<phase>package</phase> <phase>package</phase>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<excludeProperties> <excludeProperties>
<excludeProperty>git.tags</excludeProperty> <excludeProperty>git.tags</excludeProperty>
<excludeProperty>git.remote.*</excludeProperty> <excludeProperty>git.remote.*</excludeProperty>
<excludeProperty>git.closest.*</excludeProperty> <excludeProperty>git.closest.*</excludeProperty>
<excludeProperty>git.total.commit.count</excludeProperty> <excludeProperty>git.total.commit.count</excludeProperty>
</excludeProperties> </excludeProperties>
<dotGitDirectory>${project.basedir}/../../.git</dotGitDirectory> <dotGitDirectory>${project.basedir}/../../.git</dotGitDirectory>
<generateGitPropertiesFilename> <generateGitPropertiesFilename>
${project.build.outputDirectory}/git.properties ${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename> </generateGitPropertiesFilename>
<generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFile>true</generateGitPropertiesFile>
<prefix>git</prefix> <prefix>git</prefix>
<verbose>false</verbose> <verbose>false</verbose>
<injectAllReactorProjects>true</injectAllReactorProjects> <injectAllReactorProjects>true</injectAllReactorProjects>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<configuration> <configuration>
<attachClasses>true</attachClasses> <attachClasses>true</attachClasses>
<warSourceExcludes>**/WEB-INF</warSourceExcludes> <warSourceExcludes>**/WEB-INF</warSourceExcludes>
<packagingExcludes>**/WEB-INF,**/resources</packagingExcludes> <packagingExcludes>**/WEB-INF,**/resources</packagingExcludes>
<webResources> <webResources>
<resource> <resource>
<directory>../config/sql/</directory> <directory>../config/sql/</directory>
<includes> <includes>
<include>**/*.sql</include> <include>**/*.sql</include>
</includes> </includes>
</resource> </resource>
</webResources> </webResources>
</configuration> </configuration>
<version>3.3.2</version> <version>3.3.2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<version>3.1.3</version> <version>3.1.3</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>repackage</goal> <goal>repackage</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId> <artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version> <version>1.2.8.RELEASE</version>
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
</plugin> </plugin>
</plugins> </plugins>
<defaultGoal>compile</defaultGoal> <defaultGoal>compile</defaultGoal>
</build> </build>
<repositories> <repositories>
<repository> <repository>
<id>chatopera</id> <id>chatopera</id>
<name>Chatopera Inc.</name> <name>Chatopera Inc.</name>
<url>https://nexus.chatopera.com/repository/maven-public/</url> <url>https://nexus.chatopera.com/repository/maven-public/</url>
<releases> <releases>
<enabled>true</enabled> <enabled>true</enabled>
</releases> </releases>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
</repository> </repository>
</repositories> </repositories>
<developers> <developers>
<developer> <developer>
<id>hain</id> <id>hain</id>
<name>Hai Liang Wang</name> <name>Hai Liang Wang</name>
<email>hai@chatopera.com</email> <email>hai@chatopera.com</email>
<url>https://github.com/hailiang-wang</url> <url>https://github.com/hailiang-wang</url>
<organization>Chatopera Inc.</organization> <organization>Chatopera Inc.</organization>
<organizationUrl>https://www.chatopera.com</organizationUrl> <organizationUrl>https://www.chatopera.com</organizationUrl>
<roles> <roles>
<role>architect</role> <role>architect</role>
<role>developer</role> <role>developer</role>
</roles> </roles>
<timezone>Asia/Shanghai</timezone> <timezone>Asia/Shanghai</timezone>
</developer> </developer>
</developers> </developers>
</project> </project>