Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce CPD limits in select modules #1912

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion mq/main/comm-io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--

Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021 Contributors to the Eclipse Foundation
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -72,4 +72,12 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>cpd</id>
<properties>
<minimumTokens>114</minimumTokens>
</properties>
</profile>
</profiles>
</project>
10 changes: 9 additions & 1 deletion mq/main/comm-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--

Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021 Contributors to the Eclipse Foundation
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -73,4 +73,12 @@

</plugins>
</build>
<profiles>
<profile>
<id>cpd</id>
<properties>
<minimumTokens>183</minimumTokens>
</properties>
</profile>
</profiles>
</project>
10 changes: 9 additions & 1 deletion mq/main/mq-admin/admin-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--

Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021 Contributors to the Eclipse Foundation
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -101,4 +101,12 @@

</plugins>
</build>
<profiles>
<profile>
<id>cpd</id>
<properties>
<minimumTokens>256</minimumTokens>
</properties>
</profile>
</profiles>
</project>
10 changes: 9 additions & 1 deletion mq/main/mq-admin/admin-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--

Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021 Contributors to the Eclipse Foundation
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -96,4 +96,12 @@

</plugins>
</build>
<profiles>
<profile>
<id>cpd</id>
<properties>
<minimumTokens>185</minimumTokens>
</properties>
</profile>
</profiles>
</project>
Loading