Sansür, bir toplumun kendine olan güvensizliğini yansıtır ve otoriter rejimlerin belirgin bir özelliğidir.

--Potter Stewart

6.08.2012

Maven-Jetty Plugin ve EL ile Method Expression'lara Parametre Geçme

<plugin>
 <groupId>org.mortbay.jetty</groupId>
 <artifactId>jetty-maven-plugin</artifactId>
 <version>${jetty-maven-plugin.version}</version>
 <configuration>
  <scanIntervalSeconds>10</scanIntervalSeconds>
  <stopPort>8075</stopPort>
  <stopKey>STOP</stopKey>
 </configuration>
 <dependencies>
  <dependency>
   <groupId>org.glassfish.web</groupId>
   <artifactId>el-impl</artifactId>
   <version>2.2</version>
  </dependency>
 </dependencies>
</plugin>
Bu kadar..