Hi,

Is reproducer available publicly, so that to check quickly?

On Tuesday, August 4, 2015 at 8:33:40 PM UTC+2, [email protected] 
wrote:
>
> Greetings Everyone,
>
> Recently jacoco:report coveralls:report stopped working. I have tried 
> endless permutations from suggestions found here and elsewhere.
>
> Command:
>
>  mvn -X clean install jacoco:report coveralls:report
>
> End of output:
>
> [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:report (default-cli) @ 
> htm.java ---
> [DEBUG] Configuring mojo 
> org.jacoco:jacoco-maven-plugin:0.7.5.201505241946:report from plugin realm 
> ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.5.201505241946, 
> parent: sun.misc.Launcher$AppClassLoader@6d6f6e28]
> [DEBUG] Configuring mojo 
> 'org.jacoco:jacoco-maven-plugin:0.7.5.201505241946:report' with basic 
> configurator -->
> [DEBUG]   (f) dataFile = /Users/cogmission/git/htm.java/target/jacoco.exec
> [DEBUG]   (f) outputDirectory = 
> /Users/cogmission/git/htm.java/target/site/jacoco
> [DEBUG]   (f) outputEncoding = UTF-8
> [DEBUG]   (f) project = MavenProject: org.numenta:htm.java:0.5.3-SNAPSHOT 
> @ /Users/cogmission/git/htm.java/pom.xml
> [DEBUG]   (f) skip = false
> [DEBUG]   (f) sourceEncoding = UTF-8
> [DEBUG] -- end configuration --
> [INFO] Skipping JaCoCo execution due to missing execution data 
> file:/Users/cogmission/git/htm.java/target/jacoco.exec
> [INFO] 
> ------------------------------------------------------------------------
> [INFO] BUILD SUCCESS
> [INFO] 
> ------------------------------------------------------------------------
> [INFO] Total time: 16.419 s
> [INFO] Finished at: 2015-08-04T13:24:12-05:00
> [INFO] Final Memory: 29M/1021M
> [INFO] 
> ------------------------------------------------------------------------
>
> (see line --> [INFO] Skipping JaCoCo execution due to missing execution 
> data )
>
>
> I currently define argLine in properties as such: (main level not in 
> plugin)
>
> <properties>
>         <argLine>-Xmx2048m -Xms1024m</argLine>
> </properties>
>
> Then use argLine as such:
>
> <build>
>                 <plugins>
>                         <plugin>
>
>                                 <artifactId>maven-compiler-plugin</artifactId>
>                                 <version>3.2</version>
>                                 <configuration>
>                                         <verbose>true</verbose>
>                                         <source>1.8</source>
>                                         <target>1.8</target>
>                                 </configuration>
>                         </plugin>
>                         <plugin>
>                                 <groupId>org.apache.maven.plugins</groupId>
>
>                                 <artifactId>maven-surefire-plugin</artifactId>
>                                 <version>2.18.1</version>
>                                 <configuration>
>                                         <forkCount>1</forkCount>
>                                         <reuseForks>true</reuseForks>
>                                         <argLine>${argLine}</argLine>
>                                 </configuration>
>                         </plugin>
>                         <plugin>
>                                 <groupId>org.eluder.coveralls</groupId>
>
>                                 
> <artifactId>coveralls-maven-plugin</artifactId>
>                                 <version>3.1.0</version>
>                                 <configuration>
>
>                                         <sourceEncoding>UTF-8</sourceEncoding>
>                                         <repoToken>XXXXXXXXXXXX</repoToken>
>                                 </configuration>
>                         </plugin>
>                         <plugin>
>                                 <groupId>org.jacoco</groupId>
>
>                                 <artifactId>jacoco-maven-plugin</artifactId>
>                                 <version>0.7.5.201505241946</version>
>                                 <executions>
>                                         <execution>
>
>                                                 <id>default-prepare-agent</id>
>                                                 <goals>
>
>                                                         
> <goal>prepare-agent</goal>
>                                                 </goals>
>                                         </execution>
>                                         <execution>
>                                                 <id>jacoco-report</id>
>                                                 <phase>verify</phase>
>                                                 <goals>
>                                                         <goal>report</goal>
>                                                 </goals>
>                                         </execution>
>                                 </executions>
>                         </plugin>
>                 </plugins>
>         </build>
>
> Please help my open source project?
>
> Thanks,
> David
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jacoco/ee55dbae-edc9-493a-96cf-0021edbe5472%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to