Jump to content
We've recently updated our Privacy Statement, available here ×

firuzzz

Members
  • Posts

    38
  • Joined

  • Last visited

Community Answers

  1. firuzzz's post in remove "locale" from currency format was marked as the answer   
    Thanks but it was definitely something related Payara, a JVM property that I added
    -Duser.language=en (this is because the translation of logs exception to my OS/Region language (Spanish) is too bad, so I wanted all in English)
    having to change hundreds of report couldn't be the solution
  2. firuzzz's post in What are the basic JasperStudio dependencies required? was marked as the answer   
    by discarding, I started to exclude one by one, if someone else is interested in not having unneeded libs.
    I also use JFreecharts and POI and everything works well without these:
     
    <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>eclipse</groupId> <artifactId>jdtcore</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.castor</groupId> <artifactId>castor-core</artifactId> </exclusion> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcmail-jdk14</artifactId> </exclusion> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk14</artifactId> </exclusion> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bctsp-jdk14</artifactId> </exclusion> <exclusion> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> </exclusion> <exclusion> <groupId>org.apache.lucene</groupId> <artifactId>lucene-queryparser</artifactId> </exclusion> <exclusion> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> </exclusion> <exclusion> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.castor</groupId> <artifactId>castor-xml</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jdt.core.compiler</groupId> <artifactId>ecj</artifactId> </exclusion> <exclusion> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> </exclusion> <exclusion> <groupId>org.olap4j</groupId> <artifactId>olap4j</artifactId> </exclusion>[/code] 
×
×
  • Create New...