Skip to content

Commit baa1140

Browse files
rnveachromani
authored andcommittedDec 14, 2022
infra: corrects javadoc deployment for idea-extension
1 parent 6c30abf commit baa1140

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed
 

‎deploy.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ deployIdea()
5555
{
5656
echo "Deploying Idea"
5757
cd $SEVNTU_DIR/sevntu-checkstyle-idea-extension/
58-
mvn -e --no-transfer-progress clean deploy -Plocal-deploy -DdeployDir=$GH_SEVNTU_HOMR_DIR
58+
mvn -e --no-transfer-progress clean javadoc:javadoc deploy -Plocal-deploy \
59+
-DdeployDir=$GH_SEVNTU_HOMR_DIR
5960
if [ "$?" != "0" ]
6061
then
6162
echo "build for $SEVNTU_DIR/sevntu-checkstyle-idea-extension/"

‎sevntu-checkstyle-idea-extension/pom.xml

+10-11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
<name>Sevntu Checkstyle Idea extension</name>
1818

19+
<properties>
20+
<java.version>11</java.version>
21+
</properties>
22+
1923
<licenses>
2024
<license>
2125
<name>LGPL-2.1+</name>
@@ -40,17 +44,12 @@
4044
<plugins>
4145
<plugin>
4246
<groupId>org.apache.maven.plugins</groupId>
43-
<artifactId>maven-source-plugin</artifactId>
44-
<version>3.2.1</version>
45-
<executions>
46-
<execution>
47-
<id>attach-sources</id>
48-
<phase>package</phase>
49-
<goals>
50-
<goal>jar</goal>
51-
</goals>
52-
</execution>
53-
</executions>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.10.1</version>
49+
<configuration>
50+
<source>${java.version}</source>
51+
<target>${java.version}</target>
52+
</configuration>
5453
</plugin>
5554

5655
<plugin>

0 commit comments

Comments
 (0)