diff --git a/build.gradle b/build.gradle index c59d49903..1fe03753e 100644 --- a/build.gradle +++ b/build.gradle @@ -293,7 +293,13 @@ task copyAllJavadocDocFiles(type: Copy) { task javadocAll(type: Javadoc, dependsOn: copyAllJavadocDocFiles) { source javadocAllProjects.collect {project -> - project.sourceSets.main.allJava } + project.sourceSets.main.allJava.findAll { + // Filter out symbolic links to avoid + // "warning: a package-info.java file has already been seen for package" + // javadoc warnings. + !java.nio.file.Files.isSymbolicLink(it.toPath()) + } + } destinationDir = javadocAllDir // Might need a classpath classpath = files(subprojects.collect {project -> diff --git a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java deleted file mode 100644 index 92e6a80e4..000000000 --- a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx.ping; diff --git a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java new file mode 120000 index 000000000..edea7d8fd --- /dev/null +++ b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java \ No newline at end of file diff --git a/smack-android/src/main/java/org/jivesoftware/smack/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/package-info.java deleted file mode 100644 index 78d959e23..000000000 --- a/smack-android/src/main/java/org/jivesoftware/smack/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smack; diff --git a/smack-android/src/main/java/org/jivesoftware/smack/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/package-info.java new file mode 120000 index 000000000..a3d8f86a1 --- /dev/null +++ b/smack-android/src/main/java/org/jivesoftware/smack/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/package-info.java \ No newline at end of file diff --git a/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java deleted file mode 100644 index 9ad9b1354..000000000 --- a/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smack.util; diff --git a/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java new file mode 120000 index 000000000..6c269f201 --- /dev/null +++ b/smack-android/src/main/java/org/jivesoftware/smack/util/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/package-info.java \ No newline at end of file diff --git a/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java deleted file mode 100644 index 8609a8018..000000000 --- a/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smack.util.stringencoder; diff --git a/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java b/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java new file mode 120000 index 000000000..1843c7f20 --- /dev/null +++ b/smack-android/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java @@ -0,0 +1 @@ +../../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java \ No newline at end of file diff --git a/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java b/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java deleted file mode 100644 index a6e02ba25..000000000 --- a/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smack optional Debuggers. - */ -package org.jivesoftware.smackx.debugger; diff --git a/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java b/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java new file mode 120000 index 000000000..ff0f3fb31 --- /dev/null +++ b/smack-android/src/main/java/org/jivesoftware/smackx/debugger/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-debug/src/main/java/org/jivesoftware/smackx/debugger/package-info.java \ No newline at end of file diff --git a/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-android/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java b/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java deleted file mode 100644 index a6f2a8bb9..000000000 --- a/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Classes and interfaces for XMPP stream compression (XEP-138). - */ -package org.jivesoftware.smack.compression; diff --git a/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java b/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java new file mode 120000 index 000000000..c88ae8f0b --- /dev/null +++ b/smack-compression-jzlib/src/main/java/org/jivesoftware/smack/compression/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/compression/package-info.java \ No newline at end of file diff --git a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java deleted file mode 100644 index a6e02ba25..000000000 --- a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smack optional Debuggers. - */ -package org.jivesoftware.smackx.debugger; diff --git a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java new file mode 120000 index 000000000..ff0f3fb31 --- /dev/null +++ b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/debugger/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-debug/src/main/java/org/jivesoftware/smackx/debugger/package-info.java \ No newline at end of file diff --git a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-debug-slf4j/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-debug/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java deleted file mode 100644 index ba596a352..000000000 --- a/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Core classes of the Smack API. - */ -package org.jivesoftware.smack; diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java new file mode 120000 index 000000000..a3d8f86a1 --- /dev/null +++ b/smack-integration-test/src/main/java/org/jivesoftware/smack/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/package-info.java \ No newline at end of file diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index b7b3f868f..000000000 --- a/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Integration tests. - */ -package org.jivesoftware.smackx; diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-integration-test/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java deleted file mode 100644 index 49e29068b..000000000 --- a/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smacks implementation of XEP-0199: XMPP Ping. - */ -package org.jivesoftware.smackx.ping; diff --git a/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java b/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java new file mode 120000 index 000000000..edea7d8fd --- /dev/null +++ b/smack-integration-test/src/main/java/org/jivesoftware/smackx/ping/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/ping/package-info.java \ No newline at end of file diff --git a/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java b/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java deleted file mode 100644 index bf6407aba..000000000 --- a/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Java7 related classes for Smacks StringEncoder. - */ -package org.jivesoftware.smack.util.stringencoder; diff --git a/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java b/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java new file mode 120000 index 000000000..1843c7f20 --- /dev/null +++ b/smack-java7/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java @@ -0,0 +1 @@ +../../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/stringencoder/package-info.java \ No newline at end of file diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java deleted file mode 100644 index 01e4ee051..000000000 --- a/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * TODO describe me. - */ -package org.jivesoftware.smackx; diff --git a/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java b/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java new file mode 120000 index 000000000..f0646658f --- /dev/null +++ b/smack-legacy/src/main/java/org/jivesoftware/smackx/package-info.java @@ -0,0 +1 @@ +../../../../../../../smack-extensions/src/main/java/org/jivesoftware/smackx/package-info.java \ No newline at end of file diff --git a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java deleted file mode 100644 index 4461efc1e..000000000 --- a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smacks DNS resolvers. - */ -package org.jivesoftware.smack.util.dns; diff --git a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java new file mode 120000 index 000000000..a814e10da --- /dev/null +++ b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/dns/package-info.java @@ -0,0 +1 @@ +../../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/dns/package-info.java \ No newline at end of file diff --git a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java deleted file mode 100644 index 41218a37d..000000000 --- a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smack util classes. - */ -package org.jivesoftware.smack.util; diff --git a/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java new file mode 120000 index 000000000..6c269f201 --- /dev/null +++ b/smack-resolver-dnsjava/src/main/java/org/jivesoftware/smack/util/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/package-info.java \ No newline at end of file diff --git a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java deleted file mode 100644 index 4461efc1e..000000000 --- a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smacks DNS resolvers. - */ -package org.jivesoftware.smack.util.dns; diff --git a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java new file mode 120000 index 000000000..a814e10da --- /dev/null +++ b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/dns/package-info.java @@ -0,0 +1 @@ +../../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/dns/package-info.java \ No newline at end of file diff --git a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java deleted file mode 100644 index 41218a37d..000000000 --- a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smack util classes. - */ -package org.jivesoftware.smack.util; diff --git a/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java new file mode 120000 index 000000000..6c269f201 --- /dev/null +++ b/smack-resolver-javax/src/main/java/org/jivesoftware/smack/util/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/package-info.java \ No newline at end of file diff --git a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java deleted file mode 100644 index 4461efc1e..000000000 --- a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smacks DNS resolvers. - */ -package org.jivesoftware.smack.util.dns; diff --git a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java new file mode 120000 index 000000000..a814e10da --- /dev/null +++ b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/dns/package-info.java @@ -0,0 +1 @@ +../../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/dns/package-info.java \ No newline at end of file diff --git a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java deleted file mode 100644 index 41218a37d..000000000 --- a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * Copyright 2015 Florian Schmaus - * - * 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 - * - * http://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. - */ - -/** - * Smack util classes. - */ -package org.jivesoftware.smack.util; diff --git a/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java new file mode 120000 index 000000000..6c269f201 --- /dev/null +++ b/smack-resolver-minidns/src/main/java/org/jivesoftware/smack/util/package-info.java @@ -0,0 +1 @@ +../../../../../../../../smack-core/src/main/java/org/jivesoftware/smack/util/package-info.java \ No newline at end of file