Connexxion : Connecting Life with Technology

Byte by Byte Impressions on Technology, People and Process !

Archive for May 13th, 2008

QuickTip : annotations are not supported in -source 1.3

Posted by vikashazrati on Tuesday, May 13, 2008

If you are using Maven 2 and you see this issue when you are building your applications then easy way out is to add the following snippet to your pom.xml


<build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

Another tip: For posting source code on wordpress click here

Posted in Java | No Comments »