Skip to content

Commit 4253298

Browse files
committed
deploy core module
1 parent c92c326 commit 4253298

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

core/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<description>Core module for ArangoDB Java Driver</description>
1515

1616
<properties>
17+
<maven.deploy.skip>false</maven.deploy.skip>
1718
<moduleName>com.arangodb.core</moduleName>
1819
</properties>
1920

@@ -85,6 +86,26 @@
8586
</execution>
8687
</executions>
8788
</plugin>
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-javadoc-plugin</artifactId>
92+
<executions>
93+
<execution>
94+
<id>attach-javadocs</id>
95+
<goals>
96+
<goal>jar</goal>
97+
</goals>
98+
<configuration>
99+
<excludePackageNames>
100+
com.arangodb.internal,
101+
com.arangodb.internal.*
102+
</excludePackageNames>
103+
<doclint>none</doclint>
104+
</configuration>
105+
</execution>
106+
</executions>
107+
</plugin>
88108
</plugins>
89109
</build>
110+
90111
</project>

0 commit comments

Comments
 (0)