Here are some tips for Maven Java Projects in Eclipse. #1 If you pom.xml is missing maven-compiler-plugin, Eclipse (when you do Maven > Update Project), defaults the compiler level for the project to 1.5. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> Now, it gets even more tricky… if your project has defined features […]
Category Archives: app dev
Understanding OAuth 2.0
One of my projects with IBM Connections Cloud has produced a document which I hope helps you understand IBM Connections Cloud and OAuth – Understanding OAuth 2.0. I was the primary author collaborating with Elizabeth Bowling and Miguel Estrada to build the document. Good Luck!