Skip to content

Commit

Permalink
Merge pull request #1034 from kazuki43zoo/support-javadoc-and-source-…
Browse files Browse the repository at this point in the history
…jar-on-starter

Add package-info.java for generating javadoc and source jar file
  • Loading branch information
hazendaz authored Nov 27, 2024
2 parents f98cb0b + bfb649c commit ff74ea8
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions mybatis-spring-boot-starter-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<name>mybatis-spring-boot-starter-test</name>
<properties>
<module.name>org.mybatis.spring.boot.starter.test</module.name>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError> <!-- This setting added for generating javadoc jar file. -->
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright 2015-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* MyBatis-Spring-Boot-Starter for testing.
*/
// This file added for generating javadoc jar and source jar file.
package org.mybatis.spring.boot.starter.test;
1 change: 1 addition & 0 deletions mybatis-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<name>mybatis-spring-boot-starter</name>
<properties>
<module.name>org.mybatis.spring.boot.starter</module.name>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError> <!-- This setting added for generating javadoc jar file. -->
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright 2015-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* MyBatis-Spring-Boot-Starter.
*/
// This file added for generating javadoc jar and source jar file.
package org.mybatis.spring.boot.starter;

0 comments on commit ff74ea8

Please sign in to comment.