Fix aot license (#13562)
* Fix ExecutableDescriber class path Signed-off-by: crazyhzm <crazyhzm@gmail.com> * Fix aot license Signed-off-by: crazyhzm <crazyhzm@gmail.com> --------- Signed-off-by: crazyhzm <crazyhzm@gmail.com>
This commit is contained in:
parent
36e0ee0a96
commit
cb5ff2aace
|
|
@ -14,10 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.dubbo.aot.generate;
|
||||
|
||||
import org.apache.dubbo.aot.api.ExecutableMode;
|
||||
import org.apache.dubbo.aot.api.MemberDescriber;
|
||||
package org.apache.dubbo.aot.api;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.Executable;
|
||||
|
|
@ -1,12 +1,11 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* Copyright 2002-2023 the original author or authors.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@
|
|||
*/
|
||||
package org.apache.dubbo.aot.api;
|
||||
|
||||
import org.apache.dubbo.aot.generate.ExecutableDescriber;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
package org.apache.dubbo.aot.generate;
|
||||
|
||||
import org.apache.dubbo.aot.api.ExecutableDescriber;
|
||||
import org.apache.dubbo.aot.api.MemberCategory;
|
||||
import org.apache.dubbo.aot.api.TypeDescriber;
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
package org.apache.dubbo.aot.generate;
|
||||
|
||||
import org.apache.dubbo.aot.api.ExecutableDescriber;
|
||||
import org.apache.dubbo.aot.api.ExecutableMode;
|
||||
import org.apache.dubbo.aot.api.FieldDescriber;
|
||||
import org.apache.dubbo.aot.api.MemberCategory;
|
||||
|
|
|
|||
4
pom.xml
4
pom.xml
|
|
@ -858,8 +858,8 @@
|
|||
<exclude>src/main/java/org/apache/dubbo/maven/plugin/aot/RunArguments.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/maven/plugin/aot/RunProcess.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/aot/generate/BasicJsonWriter.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/aot/generate/ExecutableMode.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/aot/generate/MemberCategory.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/aot/api/ExecutableMode.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/aot/api/MemberCategory.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/metrics/aggregate/DubboMergingDigest.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/metrics/aggregate/DubboAbstractTDigest.java</exclude>
|
||||
<exclude>src/main/java/org/apache/dubbo/common/logger/helpers/FormattingTuple.java</exclude>
|
||||
|
|
|
|||
Loading…
Reference in New Issue