Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to change maven java version in po,

<project>
...
 <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
...
</project>
Comment

maven set java version

<plugins>
    <plugin>    
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
</plugins>
Comment

PREVIOUS NEXT
Code Example
Java :: get boolean from string java 
Java :: round off java 2 decimal places 
Java :: read csv java android 
Java :: android fragment fullscreen 
Java :: simple java program 
Java :: hibernate select count 
Java :: java string builder 
Java :: Caused by: java.lang.NoSuchMethodError: org.apache.logging.log4j.spi.LoggerContextFactory.isClassLoaderDependent()Z 
Java :: install java 8 arch 
Java :: set char value to null java 
Java :: json date format for localdate java 
Java :: java math.random 
Java :: counting sort java 
Java :: how to destroy activity in android 
Java :: java stream order by property 
Java :: convert java to kotlin online editor 
Java :: spring boot mongodb update subdocument 
Java :: java int to double 
Java :: select word from array 
Java :: list set value at index java 
Java :: how to reverse a string in java 
Java :: Calculator Program in Java. 
Java :: String by byte array in java 
Java :: javafx location is required 
Java :: How to invoke sendKeys() method for Integer values using Selenium and Java 
Java :: java array check duplicates 
Java :: clear text field in java 
Java :: java const 
Java :: swing button 
Java :: java Modulo 10^9+7 (1000000007) 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =