Guest User

Untitled

a guest
Nov 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.68 KB | None | 0 0
  1. [INFO] Invoking perform goals in directory /Users/miguelvelez/Documents/Programming/Java/Projects/messages/target/checkout
  2. [INFO] Executing goals 'deploy'...
  3. [WARNING] Maven will be executed in interactive mode, but no input stream has been configured for this MavenInvoker instance.
  4. [INFO] [WARNING]
  5. [INFO] [WARNING] Some problems were encountered while building the effective settings
  6. [INFO] [WARNING] Unrecognised tag: 'activateByDefault' (position: START_TAG seen ...<activation>n <activateByDefault>... @261:32) @ /usr/bin/apache-maven-3.3.9/conf/settings.xml, line 261, column 32
  7. [INFO] [WARNING]
  8. [INFO] [INFO] Scanning for projects...
  9. [INFO] [WARNING]
  10. [INFO] [WARNING] Some problems were encountered while building the effective model for com.mijecu25:messages:jar:1.0.0
  11. [INFO] [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-deploy-plugin is missing.
  12. [INFO] [WARNING]
  13. [INFO] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  14. [INFO] [WARNING]
  15. [INFO] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  16. [INFO] [WARNING]
  17.  
  18. <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">
  19. <modelVersion>4.0.0</modelVersion>
  20.  
  21. <groupId>com.mijecu25</groupId>
  22. <artifactId>messages</artifactId>
  23. <version>1.0.1-SNAPSHOT</version>
  24. <name>messages</name>
  25. <description>Library with messages for debugging</description>
  26. <url>https://github.com/mijecu25/messages</url>
  27. <inceptionYear>2016</inceptionYear>
  28. <organization>
  29. <name>Mijecu25</name>
  30. <url>http://www.mijecu25.com</url>
  31. </organization>
  32.  
  33. <licenses>
  34. <license>
  35. <name>MIT License</name>
  36. <url>http://www.opensource.org/licenses/mit-license.php</url>
  37. </license>
  38. </licenses>
  39.  
  40. <properties>
  41. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  42. </properties>
  43.  
  44. <scm>
  45. <connection>scm:git:git://github.com/mijecu25/messages.git</connection>
  46. <developerConnection>scm:git:git@github.com:mijecu25/messages.git</developerConnection>
  47. <url>https://github.com/mijecu25/messages</url>
  48. <tag>HEAD</tag>
  49. </scm>
  50.  
  51. <developers>
  52. <developer>
  53. <id>miguelvelezmj25</id>
  54. <name>Miguel Velez</name>
  55. <email>miguelvelez@mijecu25.com</email>
  56. <url>http://www.mijecu25.com/miguelvelez/</url>
  57. <roles>
  58. <role>developer</role>
  59. </roles>
  60. </developer>
  61. </developers>
  62.  
  63. <distributionManagement>
  64. <snapshotRepository>
  65. <id>sonatype-nexus-snapshots</id>
  66. <name>Sonatype Nexus snapshot repository</name>
  67. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  68. </snapshotRepository>
  69.  
  70. <repository>
  71. <id>sonatype-nexus-staging</id>
  72. <name>Sonatype Nexus release repository</name>
  73. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  74. </repository>
  75. </distributionManagement>
  76.  
  77. <profiles>
  78. <profile>
  79. <id>release</id>
  80. <activation>
  81. <property>
  82. <name>performRelease</name>
  83. <value>true</value>
  84. </property>
  85. </activation>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-gpg-plugin</artifactId>
  91. <version>1.5</version>
  92. <configuration>
  93. <passphrase>${gpg.passphrase}</passphrase>
  94. </configuration>
  95. <executions>
  96. <execution>
  97. <id>sign-artifacts</id>
  98. <phase>verify</phase>
  99. <goals>
  100. <goal>sign</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105.  
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-source-plugin</artifactId>
  109. <version>2.2.1</version>
  110. <executions>
  111. <execution>
  112. <id>attach-sources</id>
  113. <goals>
  114. <goal>jar-no-fork</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119.  
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-javadoc-plugin</artifactId>
  123. <version>2.9.1</version>
  124. <executions>
  125. <execution>
  126. <id>attach-javadocs</id>
  127. <goals>
  128. <goal>jar</goal>
  129. </goals>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </profile>
  136. </profiles>
  137.  
  138. <dependencies>
  139. <dependency>
  140. <groupId>junit</groupId>
  141. <artifactId>junit</artifactId>
  142. <version>4.12</version>
  143. <scope>test</scope>
  144. </dependency>
  145. </dependencies>
  146.  
  147. <build>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-compiler-plugin</artifactId>
  152. <version>3.3</version>
  153. <configuration>
  154. <source>1.7</source>
  155. <target>1.7</target>
  156. <encoding>UTF-8</encoding>
  157. </configuration>
  158. </plugin>
  159.  
  160. <plugin>
  161. <groupId>org.codehaus.mojo</groupId>
  162. <artifactId>cobertura-maven-plugin</artifactId>
  163. <version>2.7</version>
  164. <configuration>
  165. <format>xml</format>
  166. <maxmem>256m</maxmem>
  167. <aggregate>true</aggregate>
  168. </configuration>
  169. </plugin>
  170.  
  171. <plugin>
  172. <groupId>org.eluder.coveralls</groupId>
  173. <artifactId>coveralls-maven-plugin</artifactId>
  174. <version>4.1.0</version>
  175. <configuration>
  176. <sourceEncoding>UTF-8</sourceEncoding>
  177. <repoToken>${env.coveralls_repo_token}</repoToken>
  178. </configuration>
  179. </plugin>
  180.  
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-release-plugin</artifactId>
  184. <version>2.5</version>
  185. <configuration>
  186. <autoVersionSubmodules>true</autoVersionSubmodules>
  187. <useReleaseProfile>true</useReleaseProfile>
  188. <releaseProfiles>release</releaseProfiles>
  189. <goals>deploy</goals>
  190. </configuration>
  191. </plugin>
  192.  
  193. <plugin>
  194. <artifactId>maven-jar-plugin</artifactId>
  195. <version>2.5</version>
  196. <configuration>
  197. <archive>
  198. <addMavenDescriptor>false</addMavenDescriptor>
  199. <manifest>
  200. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  201. </manifest>
  202. </archive>
  203. </configuration>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </project>
  208.  
  209. [WARNING] Maven will be executed in interactive mode, but no input stream has been configured for this MavenInvoker instance.
  210. [INFO] [INFO] Scanning for projects...
  211. [INFO] [WARNING]
  212. [INFO] [WARNING] Some problems were encountered while building the effective model for com.mijecu25:messages:jar:1.0.1
  213. [INFO] [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-deploy-plugin is missing.
  214. [INFO] [WARNING]
  215. [INFO] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  216. [INFO] [WARNING]
  217. [INFO] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  218. [INFO] [WARNING]
Add Comment
Please, Sign In to add comment