336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
<!-- 파일 복사 -->
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
</dependency>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<phase>package</phase>
<id>compile-jni</id>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>./compile-jni.bat</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
요래 하면 되는데 phase 값을 maven에 있는 compile로 변경하고 싶은데 에러난다 ㅜ.ㅜ
그냥 쓰자
'글 > Maven' 카테고리의 다른 글
빌드 옵션별 Resource 폴더 다르게 하기 (0) | 2016.01.27 |
---|