Skip to content

Instantly share code, notes, and snippets.

View afsinka's full-sized avatar

Afşin Kapusuzoğlu afsinka

View GitHub Profile
@afsinka
afsinka / HelloWorld.java
Last active August 7, 2016 15:48
Apache CXF Server Example
package com.cxf.server;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService
public interface HelloWorld {
String sayHi(@WebParam(name = "text") String text);
}
@afsinka
afsinka / pom.xml
Last active February 26, 2016 10:29
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.27</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>