bee-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.teasoft</groupId>
<artifactId>bee-spring-boot-starter</artifactId>
<version>2.5.2.boot2.7.18</version>
</dependency><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>org.teasoft</groupId>
<artifactId>bee-spring-boot-starter</artifactId>
<version>2.5.2.boot2.7.18</version>
<packaging>pom</packaging>
<name>bee-spring-boot-starter</name>
<description>bee-spring-boot-starter</description>
<url>https://github.com/automvc/bee-spring-boot-starter</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Kingstar</name>
<email>honeysoft@126.com</email>
<organization>teasoft</organization>
<organizationUrl>http://www.teasoft.org</organizationUrl>
</developer>
<developer>
<name>teasoft</name>
<email>teasoft@163.com</email>
<organization>teasoft</organization>
<organizationUrl>http://www.kmcoding.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/automvc/bee-spring-boot-starter.git</connection>
<developerConnection>scm:git:ssh://github.com:automvc/bee-spring-boot-starter.git</developerConnection>
<url>https://github.com/automvc/bee-spring-boot-starter</url>
</scm>
<dependencies>
<dependency>
<groupId>org.teasoft</groupId>
<artifactId>bee-spring-boot</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<locale>en_US</locale>
<additionalparam>-Xdoclint:none</additionalparam>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>