We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 421341a commit e0a60e5Copy full SHA for e0a60e5
1 file changed
core/pom.xml
@@ -106,6 +106,26 @@
106
<argLine>${jacoco.agent.argLine}</argLine>
107
</configuration>
108
</plugin>
109
+ <plugin>
110
+ <groupId>org.apache.maven.plugins</groupId>
111
+ <artifactId>maven-enforcer-plugin</artifactId>
112
+ <version>1.1.1</version>
113
+ <executions>
114
+ <execution>
115
+ <id>enforce</id>
116
+ <configuration>
117
+ <rules>
118
+ <evaluateBeanshell>
119
+ <condition>javax.crypto.Cipher.getMaxAllowedKeyLength("AES") > 128</condition>
120
+ </evaluateBeanshell>
121
+ </rules>
122
+ </configuration>
123
+ <goals>
124
+ <goal>enforce</goal>
125
+ </goals>
126
+ </execution>
127
+ </executions>
128
+ </plugin>
129
</plugins>
130
</build>
131
<!--
0 commit comments