You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juneau.apache.org by GitBox <gi...@apache.org> on 2018/12/02 16:59:53 UTC

[GitHub] jamesbognar closed pull request #25: [JUNEAU-93] Use constructor argument names as bean property names.

jamesbognar closed pull request #25: [JUNEAU-93] Use constructor argument names as bean property names.
URL: https://github.com/apache/juneau/pull/25
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/BeanProperty.java b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/BeanProperty.java
index 446717727..84a5b9d3c 100644
--- a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/BeanProperty.java
+++ b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/BeanProperty.java
@@ -31,7 +31,7 @@
  * </ul>
  */
 @Documented
-@Target({FIELD,METHOD})
+@Target({FIELD,METHOD,PARAMETER})
 @Retention(RUNTIME)
 @Inherited
 public @interface BeanProperty {
diff --git a/pom.xml b/pom.xml
index 50cb30bb9..91df359de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -255,6 +255,8 @@
 					<configuration>
 						<source>1.8</source>
 						<target>1.8</target>
+						<compilerArgument>-parameters</compilerArgument>
+      						<testCompilerArgument>-parameters</testCompilerArgument>
 					</configuration>
 				</plugin>
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services