Skip to content

Commit

Permalink
infra: corrects javadoc deployment for idea-extension
Browse files Browse the repository at this point in the history
  • Loading branch information
rnveach authored and romani committed Dec 14, 2022
1 parent 6c30abf commit baa1140
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
3 changes: 2 additions & 1 deletion deploy.sh
Expand Up @@ -55,7 +55,8 @@ deployIdea()
{
echo "Deploying Idea"
cd $SEVNTU_DIR/sevntu-checkstyle-idea-extension/
mvn -e --no-transfer-progress clean deploy -Plocal-deploy -DdeployDir=$GH_SEVNTU_HOMR_DIR
mvn -e --no-transfer-progress clean javadoc:javadoc deploy -Plocal-deploy \
-DdeployDir=$GH_SEVNTU_HOMR_DIR
if [ "$?" != "0" ]
then
echo "build for $SEVNTU_DIR/sevntu-checkstyle-idea-extension/"
Expand Down
21 changes: 10 additions & 11 deletions sevntu-checkstyle-idea-extension/pom.xml
Expand Up @@ -16,6 +16,10 @@

<name>Sevntu Checkstyle Idea extension</name>

<properties>
<java.version>11</java.version>
</properties>

<licenses>
<license>
<name>LGPL-2.1+</name>
Expand All @@ -40,17 +44,12 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>

<plugin>
Expand Down

0 comments on commit baa1140

Please sign in to comment.