Skip to content

Instantly share code, notes, and snippets.

@relax-more
Created December 25, 2012 09:14
Show Gist options
  • Save relax-more/4372419 to your computer and use it in GitHub Desktop.
Save relax-more/4372419 to your computer and use it in GitHub Desktop.
【メモ】 maven, pom.xml の dependency.scope=providedについて
<!-- scope=provided は実行環境で提供されるライブラリに対して指定する-->
<!-- ビルド時に含まないようになる-->
<!-- 抜粋 -->
<dependency>
<groupId>commons-modeler</groupId>
<artifactId>commons-modeler</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment