~ubuntu-branches/ubuntu/utopic/maven-enforcer/utopic

« back to all changes in this revision

Viewing changes to enforcer-rules/src/site/apt/noSnapshots.apt.vm

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-12 22:30:16 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20110912223016-hrf239vjs4g4pik3
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
~~ Licensed to the Apache Software Foundation (ASF) under one
 
2
~~ or more contributor license agreements.  See the NOTICE file
 
3
~~ distributed with this work for additional information
 
4
~~ regarding copyright ownership.  The ASF licenses this file
 
5
~~ to you under the Apache License, Version 2.0 (the
 
6
~~ "License"); you may not use this file except in compliance
 
7
~~ with the License.  You may obtain a copy of the License at
 
8
~~
 
9
~~ http://www.apache.org/licenses/LICENSE-2.0
 
10
~~
 
11
~~ Unless required by applicable law or agreed to in writing,
 
12
~~ software distributed under the License is distributed on an
 
13
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
14
~~ KIND, either express or implied.  See the License for the
 
15
~~ specific language governing permissions and limitations
 
16
~~ under the License.    
 
17
 
 
18
  ------
 
19
  Require Release Dependencies
 
20
  ------
 
21
  Brian Fox
 
22
  ------
 
23
  November 2007
 
24
  ------
 
25
 
 
26
Require Release Dependencies
 
27
 
 
28
  This rule checks the dependencies and fails if any snapshots are found.
 
29
 
 
30
 
 
31
   The following parameters are supported by this rule:
 
32
   
 
33
   * searchTransitive - if transitive dependencies should be checked.
 
34
   
 
35
   * message - an optional message to the user if the rule fails.
 
36
   
 
37
   []
 
38
 
 
39
   
 
40
  Sample Plugin Configuration:
 
41
  
 
42
+---+
 
43
<project>
 
44
  [...]
 
45
  <build>
 
46
    <plugins>
 
47
      <plugin>
 
48
        <groupId>org.apache.maven.plugins</groupId>
 
49
        <artifactId>maven-enforcer-plugin</artifactId>
 
50
        <version>${project.version}</version>
 
51
        <executions>
 
52
          <execution>
 
53
            <id>enforce-no-snapshots</id>
 
54
            <goals>
 
55
              <goal>enforce</goal>
 
56
            </goals>
 
57
            <configuration>
 
58
              <rules>
 
59
                <requireReleaseDeps>
 
60
                  <message>No Snapshots Allowed!</message>
 
61
                </requireReleaseDeps>
 
62
              </rules>
 
63
              <fail>true</fail>
 
64
            </configuration>
 
65
          </execution>
 
66
        </executions>
 
67
      </plugin>
 
68
    </plugins>
 
69
  </build>
 
70
  [...]
 
71
</project>
 
72
+---+
 
 
b'\\ No newline at end of file'