github / maven-plugins

Official GitHub Maven Plugins
MIT License
584 stars 198 forks source link

Failed to execute goal com.github.github:site-maven-plugin:0.12: Error creating commit: Invalid request. #103

Closed adm3942soit closed 8 years ago

adm3942soit commented 8 years ago

I want deploy my library into repository on github and I receive such log: [INFO] Creating 9 blobs [INFO] Creating tree with 10 blob entries [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 43.163 s [INFO] Finished at: 2015-10-21T15:17:40+03:00 [INFO] Final Memory: 20M/154M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project java-utils-library: Error creating commit: Invalid request. [ERROR] [ERROR] nil is not a string. [ERROR] nil is not a string. (422) [ERROR] -> [Help 1]

My pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0
<groupId>com.utils</groupId>
<artifactId>java-utils-library</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>Java utils library</name>

<properties>
    <java.version>1.8</java.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <!-- github server corresponds to entry in ~/.m2/settings.xml -->
    <github.global.server>github</github.global.server>
    <github.maven-plugin>0.12</github.maven-plugin>
</properties>
<distributionManagement>
    <repository>
        <id>internal.repo</id>
        <name>Temporary Staging Repository</name>
        <url>file://${project.build.directory}/mvn-repo</url>
    </repository>
</distributionManagement>
....
<build>

...

maven-deploy-plugin 2.8.1 internal.repo::default::file://${project.build.directory}/mvn-repo
        <plugin>
            <groupId>com.github.github</groupId>
            <artifactId>site-maven-plugin</artifactId>
            <version>0.12</version>
            <configuration>
                <message>Maven artifacts for ${project.version}</message>
                   <noJekyll>true</noJekyll>
                <branch>refs/heads/mvn-repo</branch>
                <includes><include>*_/_</include></includes>
                <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
                <repositoryName>java-libraries</repositoryName>
                <repositoryOwner>adm3942soit</repositoryOwner>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>site</goal>
                    </goals>
                    <phase>deploy</phase>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Help please! Thanks in advance!

alistairjames commented 8 years ago

https://malalanayake.wordpress.com/2014/03/10/create-simple-maven-repository-on-github/ The comment at the bottom of this post suggests that you need to have filled in the Real Name field in your github profile to avoid this error.

adm3942soit commented 8 years ago

Thanks a lot for the instructions, but after these actions my error left. [WARNING] Some problems were encountered while building the effective model for com.utils:java-utils-library:jar:1.0.0 [WARNING] 'dependencies.dependency.systemPath' for org.apache.commons.net:commons-net-ftp:jar should not point at files within the project directory, ${project.basedir}/lib/commons-net-ftp-2.0.jar will be unresolvable by dependent projects @ line 39, column 21 [INFO] Creating tree with 10 blob entries [INFO] Merging with tree fc147abe5f7febe13d1644fc126f9e627d35cdc6

[INFO]

[INFO] BUILD FAILURE

[INFO]

[INFO] Total time: 56.348 s [INFO] Finished at: 2015-10-23T09:18:53+03:00 [INFO] Final Memory: 23M/264M

[INFO]

[ERROR] Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project java-utils-library: Error creating commit: Invalid request. [ERROR] [ERROR] nil is not a string. [ERROR] nil is not a string. (422) [ERROR] -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project java-utils-library: Error creating commit: Invalid request.

nil is not a string. nil is not a string. (422) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116) at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80) at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51) at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106) at org.apache.maven.cli.MavenCli.execute(MavenCli.java:862) at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:286) at org.apache.maven.cli.MavenCli.main(MavenCli.java:197) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289) at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229) at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415) at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) at org.codehaus.classworlds.Launcher.main(Launcher.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) Caused by: org.apache.maven.plugin.MojoExecutionException: Error creating commit: Invalid request.

nil is not a string. nil is not a string. (422) at com.github.maven.plugins.site.SiteMojo.execute(SiteMojo.java:461) at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208) ... 26 more Caused by: org.eclipse.egit.github.core.client.RequestException: Invalid request.

nil is not a string. nil is not a string. (422) at org.eclipse.egit.github.core.client.GitHubClient.createException(GitHubClient.java:552) at org.eclipse.egit.github.core.client.GitHubClient.sendJson(GitHubClient.java:643) at org.eclipse.egit.github.core.client.GitHubClient.post(GitHubClient.java:757) at org.eclipse.egit.github.core.service.DataService.createCommit(DataService.java:397) at com.github.maven.plugins.site.SiteMojo.execute(SiteMojo.java:454) ... 28 more [ERROR] [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Process finished with exit code 1

Full log - in attachment. Thanks a lot for any help. Oxana.

2015-10-22 15:01 GMT+03:00 Alistair MacDougall notifications@github.com:

https://malalanayake.wordpress.com/2014/03/10/create-simple-maven-repository-on-github/ The comment at the bottom of this post suggests that you need to have filled in the Real Name field in your github profile to avoid this error.

— Reply to this email directly or view it on GitHub https://github.com/github/maven-plugins/issues/103#issuecomment-150200655 .

adm3942soit commented 8 years ago

Thanks a lot for the instructions, but after these actions my error left. [WARNING] Some problems were encountered while building the effective model for com.utils:java-utils-library:jar:1.0.0 [WARNING] 'dependencies.dependency.systemPath' for org.apache.commons.net:commons-net-ftp:jar should not point at files within the project directory, ${project.basedir}/lib/commons-net-ftp-2.0.jar will be unresolvable by dependent projects @ line 39, column 21 [INFO] Creating tree with 10 blob entries [INFO] Merging with tree fc147abe5f7febe13d1644fc126f9e627d35cdc6

[INFO]

[INFO] BUILD FAILURE

[INFO]

[INFO] Total time: 56.348 s [INFO] Finished at: 2015-10-23T09:18:53+03:00 [INFO] Final Memory: 23M/264M

[INFO]

[ERROR] Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project java-utils-library: Error creating commit: Invalid request. [ERROR] [ERROR] nil is not a string. [ERROR] nil is not a string. (422) [ERROR] -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project java-utils-library: Error creating commit: Invalid request.

nil is not a string. nil is not a string. (422) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116) at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80) at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51) at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106) at org.apache.maven.cli.MavenCli.execute(MavenCli.java:862) at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:286) at org.apache.maven.cli.MavenCli.main(MavenCli.java:197) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289) at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229) at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415) at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) at org.codehaus.classworlds.Launcher.main(Launcher.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) Caused by: org.apache.maven.plugin.MojoExecutionException: Error creating commit: Invalid request.

nil is not a string. nil is not a string. (422) at com.github.maven.plugins.site.SiteMojo.execute(SiteMojo.java:461) at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208) ... 26 more Caused by: org.eclipse.egit.github.core.client.RequestException: Invalid request.

nil is not a string. nil is not a string. (422) at org.eclipse.egit.github.core.client.GitHubClient.createException(GitHubClient.java:552) at org.eclipse.egit.github.core.client.GitHubClient.sendJson(GitHubClient.java:643) at org.eclipse.egit.github.core.client.GitHubClient.post(GitHubClient.java:757) at org.eclipse.egit.github.core.service.DataService.createCommit(DataService.java:397) at com.github.maven.plugins.site.SiteMojo.execute(SiteMojo.java:454) ... 28 more [ERROR] [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Process finished with exit code 1

Full log - in attachment. Thanks a lot for any help. Oxana.

2015-10-22 15:01 GMT+03:00 Alistair MacDougall notifications@github.com:

https://malalanayake.wordpress.com/2014/03/10/create-simple-maven-repository-on-github/ The comment at the bottom of this post suggests that you need to have filled in the Real Name field in your github profile to avoid this error.

— Reply to this email directly or view it on GitHub https://github.com/github/maven-plugins/issues/103#issuecomment-150200655 .

"C:\Program Files\Java\jdk1.8.0_60\bin\java" -Dmaven.multiModuleProjectDirectory=C:\MyJavaLib\java-utils-library "-Dmaven.home=C:\Program Files\apache-maven-3.3.3" "-Dclassworlds.conf=C:\Program Files\apache-maven-3.3.3\bin\m2.conf" -Didea.launcher.port=7533 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1.5\bin" -Dfile.encoding=windows-1252 -classpath "C:\Program Files\apache-maven-3.3.3\boot\plexus-classworlds-2.5.2.jar;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1.5\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=14.1.5 -e -X clean deploy Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T14:57:37+03:00) Maven home: C:\Program Files\apache-maven-3.3.3 Java version: 1.8.0_60, vendor: Oracle Corporation Java home: C:\Program Files\Java\jdk1.8.0_60\jre Default locale: en_US, platform encoding: windows-1252 OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos" [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: javax.enterprise.inject.* < plexus.core [DEBUG] Imported: javax.enterprise.util.* < plexus.core [DEBUG] Imported: javax.inject.* < plexus.core [DEBUG] Imported: org.apache.maven.* < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.execution.scope < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.apache.maven.wagon.* < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.* < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.eclipse.aether.* < plexus.core [DEBUG] Imported: org.eclipse.aether.artifact < plexus.core [DEBUG] Imported: org.eclipse.aether.collection < plexus.core [DEBUG] Imported: org.eclipse.aether.deployment < plexus.core [DEBUG] Imported: org.eclipse.aether.graph < plexus.core [DEBUG] Imported: org.eclipse.aether.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.installation < plexus.core [DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.metadata < plexus.core [DEBUG] Imported: org.eclipse.aether.repository < plexus.core [DEBUG] Imported: org.eclipse.aether.resolution < plexus.core [DEBUG] Imported: org.eclipse.aether.spi < plexus.core [DEBUG] Imported: org.eclipse.aether.transfer < plexus.core [DEBUG] Imported: org.eclipse.aether.version < plexus.core [DEBUG] Imported: org.slf4j.* < plexus.core [DEBUG] Imported: org.slf4j.spi.* < plexus.core [DEBUG] Populating class realm maven.api [INFO] Error stacktraces are turned on. [DEBUG] Reading global settings from C:\Program Files\apache-maven-3.3.3\conf\settings.xml [DEBUG] Reading user settings from C:\Users\oksana.dudnik.m2\settings.xml [DEBUG] Reading global toolchains from C:\Program Files\apache-maven-3.3.3\conf\toolchains.xml [DEBUG] Reading user toolchains from C:\Users\oksana.dudnik.m2\toolchains.xml [DEBUG] Using local repository at C:\Users\oksana.dudnik.m2\repository [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\oksana.dudnik.m2\repository [INFO] Scanning for projects... [DEBUG] Extension realms for project com.utils:java-utils-library:jar:1.0.0: (none) [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null] [WARNING] [WARNING] Some problems were encountered while building the effective model for com.utils:java-utils-library:jar:1.0.0 [WARNING] 'dependencies.dependency.systemPath' for org.apache.commons.net:commons-net-ftp:jar should not point at files within the project directory, ${project.basedir}/lib/commons-net-ftp-2.0.jar will be unresolvable by dependent projects @ line 39, column 21 [WARNING] 'dependencies.dependency.systemPath' for com.sun.jna:jna:jar should not point at files within the project directory, ${project.basedir}/lib/jna-3.2.5.jar will be unresolvable by dependent projects @ line 46, column 21 [WARNING] 'dependencies.dependency.systemPath' for com.sun.jna.platform:jna-platform:jar should not point at files within the project directory, ${project.basedir}/lib/jna-platform-3.4.0.jar will be unresolvable by dependent projects @ line 53, column 21 [WARNING] 'dependencies.dependency.systemPath' for net.jimmc:jshortcut:jar should not point at files within the project directory, ${project.basedir}/lib/jshortcut-0_4.jar will be unresolvable by dependent projects @ line 60, column 21 [WARNING] 'dependencies.dependency.systemPath' for jssc:jssc:jar should not point at files within the project directory, ${project.basedir}/lib/jssc.jar will be unresolvable by dependent projects @ line 67, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.log4j:log4j:jar should not point at files within the project directory, ${project.basedir}/lib/log4j-1.2.9.jar will be unresolvable by dependent projects @ line 74, column 21 [WARNING] 'dependencies.dependency.systemPath' for javax.mail:mail:jar should not point at files within the project directory, ${project.basedir}/lib/mail-1.4.jar will be unresolvable by dependent projects @ line 81, column 21 [WARNING] 'dependencies.dependency.systemPath' for myFiler:MyFiler:jar should not point at files within the project directory, ${project.basedir}/lib/MyFiler.jar will be unresolvable by dependent projects @ line 88, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.commons.codec:org.apache.commons.codec:jar should not point at files within the project directory, ${project.basedir}/lib/org.apache.commons.codec.jar will be unresolvable by dependent projects @ line 95, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.poi:poi:jar should not point at files within the project directory, ${project.basedir}/lib/poi-3.8-20120326.jar will be unresolvable by dependent projects @ line 102, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.poi:poi-ooxml:jar should not point at files within the project directory, ${project.basedir}/lib/poi-ooxml-3.8-20120326.jar will be unresolvable by dependent projects @ line 109, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.poi:poi-stratchpad:jar should not point at files within the project directory, ${project.basedir}/lib/poi-scratchpad-3.8-20120326.jar will be unresolvable by dependent projects @ line 116, column 21 [WARNING] 'dependencies.dependency.systemPath' for org:smslib:jar should not point at files within the project directory, ${project.basedir}/lib/smslib-3.5.3.jar will be unresolvable by dependent projects @ line 123, column 21 [WARNING] 'dependencies.dependency.systemPath' for org:spring:jar should not point at files within the project directory, ${project.basedir}/lib/spring-1.2.8.jar will be unresolvable by dependent projects @ line 130, column 21 [WARNING] 'dependencies.dependency.systemPath' for org.apache.xmlbeans:xmlbeans-xmlpublic:jar should not point at files within the project directory, ${project.basedir}/lib/xmlbeans-xmlpublic-2.4.0.jar will be unresolvable by dependent projects @ line 137, column 21 [WARNING] 'dependencies.dependency.systemPath' for net.lingala.zip4j:zip4j:jar should not point at files within the project directory, ${project.basedir}/lib/zip4j_1.3.2.jar will be unresolvable by dependent projects @ line 144, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [DEBUG] === REACTOR BUILD PLAN ================================================ [DEBUG] Project: com.utils:java-utils-library:jar:1.0.0 [DEBUG] Tasks: [clean, deploy] [DEBUG] Style: Regular [DEBUG] ======================================================================= [INFO]
[INFO] ------------------------------------------------------------------------ [INFO] Building Java utils library 1.0.0 [INFO] ------------------------------------------------------------------------ [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] === PROJECT BUILD PLAN ================================================ [DEBUG] Project: com.utils:java-utils-library:1.0.0 [DEBUG] Dependencies (collect): [] [DEBUG] Dependencies (resolve): [compile, runtime, test] [DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${clean.excludeDefaultDirectories} ${maven.clean.failOnError} ${clean.followSymLinks} ${maven.clean.retryOnError} ${clean.skip} ${clean.verbose}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.resources.supportMultiLineFiltering}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default-compile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${maven.compiler.compilerId} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.fork} ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${maven.compiler.optimize} ${project.build.finalName} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} 1.7 ${lastModGranularityMs} 1.7 ${maven.compiler.verbose}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.test.skip} ${maven.resources.supportMultiLineFiltering}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:2.3.1:testCompile (default-testCompile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${maven.compiler.compilerId} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.fork} ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${maven.compiler.optimize} ${project.build.finalName} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.test.skip} 1.7 ${lastModGranularityMs} 1.7 ${maven.compiler.testSource} ${maven.compiler.testTarget} ${maven.compiler.verbose}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${argLine} ${childDelegation} ${maven.surefire.debug} ${disableXmlReport} ${enableAssertions} ${excludedGroups} ${surefire.failIfNoSpecifiedTests} ${failIfNoTests} ${forkMode} ${surefire.timeout} ${groups} ${junitArtifactName} ${jvm} ${objectFactory} ${parallel} ${perCoreThreadCount} ${plugin.artifactMap} ${surefire.printSummary} ${project.artifactMap} ${maven.test.redirectTestOutputToFile} ${surefire.reportFormat} ${surefire.reportNameSuffix} ${maven.test.skip} ${maven.test.skip.exec} ${skipTests} ${test} ${maven.test.failure.ignore} ${testNGArtifactName} ${threadCount} ${trimStackTrace} ${surefire.useFile} ${surefire.useManifestOnlyJar} ${surefire.useSystemClassLoader} ${useUnlimitedThreads} ${basedir}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${jar.finalName} ${jar.forceCreation} ${jar.skipIfEmpty} ${jar.useDefaultManifestFile}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${createChecksum} ${localRepository} ${maven.install.skip} ${updateReleaseInfo}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-deploy-plugin:2.8.1:deploy (default-deploy) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

internal.repo::default::file://C:\MyJavaLib\java-utils-library\target/mvn-repo ${altReleaseDeploymentRepository} ${altSnapshotDeploymentRepository} ${deployAtEnd} ${retryFailedDeploymentCount} ${maven.deploy.skip} ${updateReleaseInfo}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: com.github.github:site-maven-plugin:0.12:site (default) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

refs/heads/mvn-repo ${github.site.dryRun} ${github.site.force} ${github.site.host} *_/_ true Maven artifacts for 1.0.0 true ${github.site.oauth2Token} C:\MyJavaLib\java-utils-library\target/mvn-repo ${github.site.password} ${project} java-libraries adm3942soit ${github.site.server} ${session} ${settings} ${github.site.skip} ${github.site.userName}

[DEBUG] ======================================================================= [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=17, ConflictIdSorter.graphTime=2, ConflictIdSorter.topsortTime=3, ConflictIdSorter.conflictIdCount=16, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=49, ConflictResolver.conflictItemCount=16, DefaultDependencyCollector.collectTime=13, DefaultDependencyCollector.transformTime=62} [DEBUG] com.utils:java-utils-library:jar:1.0.0 [DEBUG] org.apache.commons.net:commons-net-ftp:jar:2.0:system [DEBUG] com.sun.jna:jna:jar:3.2.5:system [DEBUG] com.sun.jna.platform:jna-platform:jar:3.4.0:system [DEBUG] net.jimmc:jshortcut:jar:0_4:system [DEBUG] jssc:jssc:jar:1.0:system [DEBUG] org.apache.log4j:log4j:jar:1.2.9:system [DEBUG] javax.mail:mail:jar:1.4:system [DEBUG] myFiler:MyFiler:jar:1.0.0:system [DEBUG] org.apache.commons.codec:org.apache.commons.codec:jar:1.3:system [DEBUG] org.apache.poi:poi:jar:3.8-20120326:system [DEBUG] org.apache.poi:poi-ooxml:jar:3.8-20120326:system [DEBUG] org.apache.poi:poi-stratchpad:jar:3.8-20120326:system [DEBUG] org:smslib:jar:3.5.3:system [DEBUG] org:spring:jar:1.2.8:system [DEBUG] org.apache.xmlbeans:xmlbeans-xmlpublic:jar:2.4.0:system [DEBUG] net.lingala.zip4j:zip4j:jar:1.3.2:system [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ java-utils-library --- [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=465, DefaultDependencyCollector.transformTime=5} [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@7852e922] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator --> DEBUG directory = C:\MyJavaLib\java-utils-library\target DEBUG excludeDefaultDirectories = false DEBUG failOnError = true DEBUG followSymLinks = false DEBUG outputDirectory = C:\MyJavaLib\java-utils-library\target\classes DEBUG reportDirectory = C:\MyJavaLib\java-utils-library\target\site DEBUG retryOnError = true DEBUG skip = false DEBUG testOutputDirectory = C:\MyJavaLib\java-utils-library\target\test-classes [DEBUG] -- end configuration -- [INFO] Deleting C:\MyJavaLib\java-utils-library\target [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\maven-metadata.xml.sha1 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\maven-metadata.xml.md5 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\maven-metadata.xml [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.pom.sha1 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.pom.md5 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.pom [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.jar.sha1 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.jar.md5 [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0\java-utils-library-1.0.0.jar [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library\1.0.0 [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils\java-utils-library [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\mvn-repo\com\utils [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\mvn-repo\com [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\mvn-repo [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\maven-archiver\pom.properties [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\maven-archiver [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\java-utils-library.jar [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\generated-sources\annotations [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\generated-sources [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\ua\com\hardware\connection\NetworkUtils.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\ua\com\hardware\connection [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\ua\com\hardware [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\ua\com [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\ua [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\workWithStr\Stringer.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\workWithStr\MyFileNameFilter.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\workWithStr [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\task\TaskManager.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\task [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\screen\Screenshort.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\screen [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendPost.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendMailBean.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendMailBean$2.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendMailBean$1.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendMail.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\post\SendMail$1.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\post [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\modem\ModemTest.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\modem\CommTest.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\modem\CommTest$USSDNotification.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\modem\CommTest$OutboundNotification.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\modem [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\log\LogWork.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\log\InFile.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\log [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\inet\PingTester.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\inet\InetPinger.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\inet [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\ftp\FTPDownloader.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\ftp [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\WriteFile.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\ReadFile.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\MyPropertiesSave.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\MyPropertiesLoad.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\MyFileNameFilter.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\MyFileChooser.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\files\ExistFile.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\files [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\XLSFileReader.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\Presentation.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\ExcelFile.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\DocReader.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\Const.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\apache\CreatorWordDoc.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word\apache [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\word [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\file\Filer.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\file [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\environment\IntellijIdeaKeyGen.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\environment [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding\UTF8Control.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding\UnicodeUtil.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding\UnicodeUtil$UnicodeInputStream.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding\ResourceBundleControl.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding\ConvertChar.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\encoding [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\digits\DigitTransformer.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\digits [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\debug\Printer.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\debug [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\date\Dater.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\date [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\connection\PingProgram.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\connection [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\archiv\ZipArchiv.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\utils\archiv\ExtractAllFilesWithInputStreams.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils\archiv [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\utils [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\WinIDs.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\ToRunCmd.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\win\WindowsKeys.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\win\registry\WinRegistry.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\win\registry\CreateShortcut.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\win\registry [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\win [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\Reloader.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\NetworkUtils.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\linux\WvdialConfiguration.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\linux\LinuxCorrector.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\linux [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\HardWare4Win.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\Hardware4Linux.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\DetectorCompOS.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\os\DetectorCompOS$StreamReader.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\comp\os [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\MBID.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\HDDID.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\GetAllHWIDs.class [INFO] Deleting file C:\MyJavaLib\java-utils-library\target\classes\com\comp\CPUID.class [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com\comp [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes\com [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target\classes [INFO] Deleting directory C:\MyJavaLib\java-utils-library\target [DEBUG] Skipping non-existing directory C:\MyJavaLib\java-utils-library\target\classes [DEBUG] Skipping non-existing directory C:\MyJavaLib\java-utils-library\target\test-classes [DEBUG] Skipping non-existing directory C:\MyJavaLib\java-utils-library\target\site [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ java-utils-library --- [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=0, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=21, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=1255, DefaultDependencyCollector.transformTime=24} [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.6: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile [DEBUG] commons-cli:commons-cli:jar:1.0:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [DEBUG] org.apache.maven.shared:maven-filtering:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7 [DEBUG] Included: commons-cli:commons-cli:jar:1.0 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.1 [DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@7852e922] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator --> DEBUG buildFilters = [] DEBUG encoding = UTF-8 DEBUG escapeWindowsPaths = true DEBUG includeEmptyDirs = false DEBUG outputDirectory = C:\MyJavaLib\java-utils-library\target\classes DEBUG overwrite = false DEBUG project = MavenProject: com.utils:java-utils-library:1.0.0 @ C:\MyJavaLib\java-utils-library\pom.xml DEBUG resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\MyJavaLib\java-utils-library\src\main\resources, PatternSet [includes: {}, excludes: {}]}}] DEBUG session = org.apache.maven.execution.MavenSession@6175619b DEBUG supportMultiLineFiltering = false DEBUG useBuildFilters = true DEBUG useDefaultDelimiters = true [DEBUG] -- end configuration -- [DEBUG] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\windows, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows 7, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\Program Files\Java\jdk1.8.0_60\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\rt.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_60\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_60\jre\classes, env.COMPUTERNAME=LVALTP1427, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, site.deploy.id=github, java.vm.specification.vendor=Oracle Corporation, env.SYSDRIVE=%SYSTEMFOLDER%, java.runtime.version=1.8.0_60-b27, env.HOMEPATH=\Users\oksana.dudnik, project.build.sourceEncoding=UTF-8, user.name=oksana.dudnik, maven.build.version=Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T14:57:37+03:00), env.DALVIK_SDK=C:\dalvik-sdk, idea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1.5\bin, env.WINDOWS_TRACING_FLAGS=3, env.PATH=C:\ProgramData\Oracle\Java\javapath;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Ruby193\bin;C:\Program Files\Git\cmd;C:\apache-ant-1.9.6\bin;C:\Program Files (x86)\WinMerge;C:\Program Files\apache-maven-3.3.3\bin;C:\Ruby193\bin, github.maven-plugin=0.12, user.language=en, idea.version=14.1.5, env.WINDIR=C:\windows, sun.boot.library.path=C:\Program Files\Java\jdk1.8.0_60\jre\bin, classworlds.conf=C:\Program Files\apache-maven-3.3.3\bin\m2.conf, java.version=1.8.0_60, env.PROCESSOR_IDENTIFIER=AMD64 Family 21 Model 48 Stepping 1, AuthenticAMD, user.timezone=Europe/Helsinki, env.=A:=A:\, env.TEMP=C:\Users\OKSANA~1.DUD\AppData\Local\Temp, sun.arch.data.model=64, env.WINDOWS_TRACING_LOGFILE=C:\BVTBin\Tests\installpackage\csilogfile.log, java.endorsed.dirs=C:\Program Files\Java\jdk1.8.0_60\jre\lib\endorsed, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=US, env.GRADLE_HOME=C:\gradle-2.7, java.home=C:\Program Files\Java\jdk1.8.0_60\jre, env.APPDATA=C:\Users\oksana.dudnik\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=6.1, site.url=https://github.com/adm3942soit/java-libraries, env.=::=::\, project.reporting.outputEncoding=UTF-8, path.separator=;, java.vm.version=25.60-b23, user.variant=, env.USERPROFILE=C:\Users\oksana.dudnik, env.JAVA_HOME=C:\Program Files\Java\jdk1.8.0_60, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\OKSANA~1.DUD\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\oksana.dudnik, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.M2_HOME=C:\Program Files\apache-maven-3.3.3, env.NUMBER_OF_PROCESSORS=4, java.library.path=C:\Program Files\Java\jdk1.8.0_60\bin;C:\windows\Sun\Java\bin;C:\windows\system32;C:\windows;C:\ProgramData\Oracle\Java\javapath;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\Ruby193\bin;C:\Program Files\Git\cmd;C:\apache-ant-1.9.6\bin;C:\Program Files (x86)\WinMerge;C:\Program Files\apache-maven-3.3.3\bin;C:\Ruby193\bin;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.USERDNSDOMAIN=DIR.SVC.ACCENTURE.COM, env.PSMODULEPATH=C:\windows\system32\WindowsPowerShell\v1.0\Modules\, java.vm.vendor=Oracle Corporation, site.deploy.url=https://github.com/adm3942soit/java-libraries, maven.home=C:\Program Files\apache-maven-3.3.3, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=14.1.5 -e -X clean deploy, java.class.path=C:\Program Files\apache-maven-3.3.3\boot\plexus-classworlds-2.5.2.jar;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1.5\lib\idea_rt.jar, env.PROGRAMW6432=C:\Program Files, idea.launcher.port=7533, maven.version=3.3.3, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, github.global.server=github, env.LOGONSERVER=\RIGDC3201, java.vm.specification.version=1.8, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=Service Pack 1, env.ANT_HOME=C:\apache-ant-1.9.6, env.UATDATA=C:\windows\SysWOW64\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, env.PROCESSOR_REVISION=3001, java.io.tmpdir=C:\Users\OKSANA~1.DUD\AppData\Local\Temp\, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:\MyJavaLib\java-utils-library, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\windows\system32\cmd.exe, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Program Files\Java\jdk1.8.0_60\jre\lib\ext;C:\windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\oksana.dudnik\AppData\Local, user.dir=C:\MyJavaLib\java-utils-library, line.separator= , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.RB;.RBW, env.ANDROID_SDK=C:\Users\oksana.dudnik\AppData\Local\Android\android-sdk, env.USERNAME=oksana.dudnik, file.encoding=windows-1252, env.USERDOMAIN=DIR, java.specification.version=1.8, env.PROCESSOR_LEVEL=21} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory C:\MyJavaLib\java-utils-library\src\main\resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 0 resource [DEBUG] no use filter components [INFO] [INFO] --- maven-compiler-plugin:2.3.1:compile (default-compile) @ java-utils-library --- [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=8, ConflictMarker.markTime=0, ConflictMarker.nodeCount=71, ConflictIdSorter.graphTime=3, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=27, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=4, ConflictResolver.conflictItemCount=68, DefaultDependencyCollector.collectTime=459, DefaultDependencyCollector.transformTime=15} [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.1: [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-repo

adm3942soit commented 8 years ago

Thanks a lot! Everything is working already)