feat: support deploy inner profile (#76)

This commit is contained in:
Tomsun28 2026-01-07 17:06:15 +08:00 committed by GitHub
parent a616028369
commit 26b7460dc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

34
pom.xml
View file

@ -236,6 +236,40 @@
</plugins> </plugins>
</build> </build>
</profile> </profile>
<profile>
<id>inner</id>
<distributionManagement>
<repository>
<id>maven-releases</id>
<url>https://nexus-int.bigmodel.cn/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<url>https://nexus-int.bigmodel.cn/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>all,-missing</doclint>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles> </profiles>
</project> </project>